﻿/* =========================
   ROOT COLORS
========================= */
:root {
    --navy-dark: #041833;
    --navy: #072a57;
    --orange: #ff7a00;
    --orange-light: #ffb347;
    --white: #ffffff;
    --light-bg: #f6f8fc;
    --text-dark: #0f172a;
    --muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

/* =========================
   MAIN WRAPPER
========================= */
.auth-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: white;
}

/* =========================
   LEFT PANEL
========================= */
.auth-left {
    width: 52%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px;
    background: radial-gradient(circle at top left, rgba(255,140,0,.18), transparent 26%), linear-gradient( 145deg, #02142f 0%, #052a57 50%, #06366f 100%);
}

    /* ORANGE CURVE */
    .auth-left::before {
        content: "";
        position: absolute;
        right: -120px;
        top: -80px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,122,0,.18) 0%, rgba(255,122,0,.08) 45%, transparent 75%);
        z-index: 1;
    }

    /* GLOW DOTS */
    .auth-left::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 72% 18%, rgba(255,180,60,.8) 2px, transparent 4px), radial-gradient(circle at 77% 28%, rgba(255,180,60,.7) 3px, transparent 5px), radial-gradient(circle at 70% 38%, rgba(255,180,60,.6) 2px, transparent 4px), radial-gradient(circle at 74% 54%, rgba(255,180,60,.8) 3px, transparent 5px);
    }

/* WAVES */
.wave-lines {
    position: absolute;
    bottom: -100px;
    left: 34%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    z-index: 1;
}

    .wave-lines::before,
    .wave-lines::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.05);
    }

    .wave-lines::before {
        inset: 45px;
    }

    .wave-lines::after {
        inset: 90px;
    }

/* =========================
   LEFT CONTENT
========================= */
.auth-left-content {
    position: relative;
    z-index: 5;
    max-width: 520px;
}

.brand-logo-box {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.brand-logo {
    font-size: 42px;
    color: var(--orange);
}

.brand-title {
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -3px;
}

    .brand-title span {
        color: var(--orange);
    }

.brand-subtitle {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,.88);
    margin-bottom: 44px;
}

/* =========================
   FEATURES
========================= */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

    .feature-item i {
        color: #ffb347;
        font-size: 18px;
    }

/* =========================
   BOTTOM CARD
========================= */
.bottom-badge {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.badge-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ffb347,#ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(255,122,0,.35);
}

.bottom-badge h5 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.bottom-badge p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

/* =========================
   RIGHT PANEL
========================= */
.auth-right {
    width: 48%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    overflow: hidden;
    background: radial-gradient( circle at top right, rgba(255,122,0,.06), transparent 28%), linear-gradient( 180deg, #ffffff 0%, #f8fafc 100%);
}

/* =========================
   LOGIN CARD
========================= */
.login-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    border-radius: 34px;
    padding: 34px 42px;
    border: 1px solid rgba(226,232,240,.8);
    box-shadow: 0 20px 60px rgba(15,23,42,.08), 0 8px 24px rgba(15,23,42,.04);
    position: relative;
    z-index: 5;
}

/* =========================
   TOP ICON
========================= */
/*.login-badge {
    width: 72px;
    height: 72px;
    margin: 0 auto 34px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #ffb347, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 38px;
    box-shadow: 0 14px 35px rgba(255,122,0,.35);
}*/
/* =========================
   LOGIN LOGO
========================= */

.login-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}

.login-logo-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
/* =========================
   TITLES
========================= */
.login-title {
    text-align: center;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    color: #041530;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

    .login-title span {
        color: var(--orange);
    }

.login-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 26px;
}

/* =========================
   LABELS
========================= */
.auth-label {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

/* =========================
   INPUTS
========================= */
.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 22px;
}

.auth-input {
    width: 100%;
    height: 48px;
    border-radius: 22px;
    border: 1px solid #dbe3ef;
    background: white;
    padding: 0 24px 0 60px;
    font-size: 17px;
    transition: .3s ease;
}

    .auth-input:focus {
        outline: none;
        border-color: var(--orange);
        box-shadow: 0 0 0 5px rgba(255,122,0,.12);
    }

/* =========================
   OPTIONS
========================= */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 34px;
}

.forgot-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

    .forgot-link:hover {
        color: #ff5e00;
    }

/* =========================
   BUTTON
========================= */
.login-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 22px;
    background: linear-gradient( 135deg, #ffb347, #ff6a00);
    color: white;
    font-size: 22px;
    font-weight: 800;
    transition: .3s ease;
    box-shadow: 0 12px 28px rgba(255,122,0,.30);
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(255,122,0,.40);
    }

/* =========================
   LINKS
========================= */
.auth-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

    .auth-link:hover {
        color: #ff5e00;
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {

    .auth-left {
        display: none;
    }

    .auth-right {
        width: 100%;
    }

    .login-card {
        max-width: 100%;
    }
}

    .register-card {
        padding: 26px 38px !important;
    }

    .register-card .login-logo-img {
        width: 180px;
    }
    .register-card .login-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
    .register-card .login-subtitle {
        margin-bottom: 18px;
        font-size: 15px;
    }
    .register-card .auth-input {
        height: 45px;
        font-size: 15px;
    }
    .register-card .auth-label {
        margin-bottom: 8px;
        font-size: 16px;
    }
    .register-card .login-btn {
        height: 48px;
        font-size: 18px;
        margin-top: 10px;
    }