.login-shell {
    display: flex !important;
    min-height: calc(100vh - 100px) !important;
    background: #fff !important;
}

.hero-pane {
    flex: 0 0 40% !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: 20px 60px 30px 60px !important;
}

    .hero-pane svg {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.btn-register-now {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    border: 2px solid #FFA726;
    color: #ff7a00;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 12px;
}

    .btn-register-now img {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .btn-register-now:hover {
        background: #F3702140;
        color: #fff;
        box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    }

        .btn-register-now:hover img {
            filter: brightness(0) invert(1);
        }

.auth-card {
    flex: 0 0 60% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 30px 35px !important;
    overflow-y: auto !important;
    max-width: none !important;
    /* width: 100% !important; */
    margin: 0 auto !important;
}

.brand {
    text-align: center;
}

    .brand .brand-logo img {
        max-width: 180px;
        height: auto;
    }

.heading-div {
    text-align: center !important;
    margin-bottom: 12px !important;
}

    .heading-div .auth-title {
        font-size: 20px !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin: 0 0 2px 0 !important;
    }

.tagline {
    text-align: center !important;
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
}

.form-label {
    font-size: 10px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.with-icon {
    position: relative !important;
    margin-bottom: 14px !important;
    /* width: 100% !important; */
    width: 600px !important;
}

    .with-icon .input-icon {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        pointer-events: none;
    }

    .with-icon .form-control {
        border: none !important;
        border-bottom: 2px solid #e0e0e0 !important;
        background: transparent !important;
        padding-left: 35px !important;
        padding-right: 10px !important;
        height: 32px !important;
        font-size: 13px !important;
        outline: none !important;
        box-shadow: none !important;
        transition: border-color 0.2s !important;
        color: #333 !important;
        width: 600px !important;
    }

        .with-icon .form-control::placeholder {
            color: #bbb;
        }

        .with-icon .form-control:focus {
            border-bottom-color: #ff7a00;
            box-shadow: none;
        }

.password-wrapper {
    position: relative !important;
    margin-bottom: 12px !important;
    /* width: 100% !important; */
    width: 600px !important;
}

.password-field {
    padding-left: 35px !important;
    padding-right: 40px !important;
    border: none !important;
    border-bottom: 2px solid #e0e0e0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    height: 32px !important;
    font-size: 13px !important;
    width: 100% !important;
    color: #333 !important;
}

    .password-field::placeholder {
        color: #bbb;
    }

    .password-field:focus {
        border-bottom-color: #ff7a00;
    }

.toggle-password {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #333;
    border-radius: 3px;
    accent-color: #ff7a00;
    vertical-align: middle;
    cursor: pointer;
}

.rememberdiv {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 14px;
}

    .rememberdiv .form-check-label {
        line-height: 1;
        margin-left: 8px;
        color: #666;
        cursor: pointer;
    }

        .rememberdiv .muted-link {
            font-size: 13px;
            text-decoration: none;
            color: #ff7a00;
            margin-left: auto;
        }

            .rememberdiv .muted-link:hover {
                text-decoration: underline;
            }

.custom-btn {
    text-transform: uppercase !important;
    height: 38px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    margin-top: 10px !important;
    background: #ff7a00 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    width: 600px !important;
}

    .custom-btn:hover {
        background: #e67e00;
        box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    }

    .custom-btn img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

.new-customer {
    text-align: center !important;
    margin-top: 12px !important;
    font-size: 12px !important;
    color: #666 !important;
}

    .new-customer a {
        color: #ff7a00;
        text-decoration: none;
        font-weight: 600;
    }

        .new-customer a:hover {
            text-decoration: underline;
        }

.divider {
    text-align: center !important;
    position: relative !important;
    border-bottom: none !important;
    margin: 15px 0 !important;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e0e0e0;
    }

    .divider span {
        position: relative;
        background: #fff;
        padding: 0 10px;
        color: #999;
        font-size: 12px;
    }

.socials {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 12px !important;
}

    .socials a {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background-color: #fff !important;
        color: #333 !important;
        font-size: 18px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        box-shadow: rgba(255, 145, 0, 0.45) 0px 3px 8px !important;
    }

        .socials a:hover {
            background-color: #eaeaea;
            transform: scale(1.1);
        }

.submit {
    width: 100%;
    padding: 10px 24px !important;
    background: #ff7a00 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .submit:hover {
        background: #f56600 !important;
        box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    }

.login-link {
    text-align: center;
    margin-top: 20px;
}

    .login-link a {
        color: #ff7a00;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

/* ── Tablet ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-pane {
        padding: 40px 60px 60px;
    }

    .auth-card {
        padding: 40px 36px;
    }
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 767px) {

    /* hide the illustration entirely */
    .hero-pane {
        display: none !important;
    }

    /* full-width auth card with an orange accent bar at the top */
    .auth-card {
        flex: 0 0 100%;
        width: 100%;
        min-height: 100vh;
        padding: 0 24px 48px;
        background: #fff;
        border-top: 5px solid #F37021;
        box-sizing: border-box;
        max-width: none;
    }

    /* breathing room for the heading */
    .heading-div {
        padding-top: 36px;
        margin-bottom: 16px;
    }

    .heading-div .auth-title {
        font-size: 22px;
    }

    .form-label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    /* taller inputs – prevents iOS auto-zoom on font-size < 16px */
    .with-icon .form-control,
    .password-field {
        height: 48px;
        font-size: 16px;
    }

    /* a bit less bottom space between fields */
    .with-icon,
    .password-wrapper {
        margin-bottom: 15px;
    }

    .rememberdiv {
        margin: 12px 0;
        font-size: 13px;
    }

    /* bigger, rounder register button on mobile */
    .custom-btn {
        height: 50px;
        font-size: 15px;
        border-radius: 8px;
        margin-top: 15px;
    }

    .new-customer {
        margin-top: 20px;
        font-size: 14px;
    }

    .divider {
        margin: 15px 0;
    }

    .socials {
        margin-top: 12px;
        margin-bottom: 16px;
        gap: 20px;
    }

        .socials a {
            width: 46px;
            height: 46px;
            font-size: 22px;
        }
}
