/* =========================================
   AUREUS PREMIUM LOGIN STYLES
   ========================================= */
:root {
    --bg-dark: #09090b;
    --bg-darker: #050505;
    --primary-lime: #D4F458;
    --primary-lime-glow: rgba(212, 244, 88, 0.5);
    --accent-gold: #FFD700;
    --text-white: #FAFAFA;
    --text-gray: #A1A1AA;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(20, 20, 24, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --input-bg: rgba(255, 255, 255, 0.03);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    height: 100vh;
    display: flex;
    overflow: hidden;
    margin: 0;
}

/* =========================================
   BACKGROUND ANIMATION
   ========================================= */
.login-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    overflow: hidden;
    background: radial-gradient(circle at top right, #111114, #000000);
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 244, 88, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    filter: blur(60px);
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.visual-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.visual-logo-container {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.visual-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.visual-logo:hover {
    transform: scale(1.1);
}

.visual-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: var(--primary-lime);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-lime);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

.visual-quote {
    font-size: 22px;
    color: var(--text-gray);
    max-width: 520px;
    line-height: 1.6;
    font-weight: 300;
    border-left: 2px solid var(--primary-lime);
    padding-left: 24px;
}

/* =========================================
   GLASSMOPRHIC FORM CONTAINER
   ========================================= */
.login-form-container {
    width: 580px;
    background: rgba(22, 22, 26, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 60px 80px;
    border-left: 1px solid var(--border-color);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 20;
}

.form-header {
    margin-bottom: 48px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
}

/* =========================================
   SOCIAL BUTTONS
   ========================================= */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-social:hover::before {
    transform: translateX(100%);
}

.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* =========================================
   FLOATING LABEL INPUTS
   ========================================= */
.input-group {
    position: relative;
    margin-bottom: 24px;
}

.input-field {
    width: 100%;
    padding: 18px 20px;
    padding-top: 24px;
    /* Space for label */
    padding-bottom: 12px;
    border-radius: 16px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    outline: none;
}

.input-field::placeholder {
    color: transparent;
    /* Hide placeholder for floating label effect */
}

.input-label-floating {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 15px;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.2s ease-out;
    transform-origin: left top;
}

/* Floating Label Logic */
.input-field:focus,
.input-field:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.input-field:focus {
    border-color: var(--primary-lime);
    box-shadow: 0 0 0 1px rgba(212, 244, 88, 0.3);
}

.input-field:focus~.input-label-floating,
.input-field:not(:placeholder-shown)~.input-label-floating {
    transform: translateY(-10px) scale(0.75);
    color: var(--primary-lime);
    font-weight: 600;
}

/* =========================================
   ACTIONS & BUTTONS
   ========================================= */
.remember-forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    color: var(--text-gray);
    transition: color 0.2s;
}

.checkbox-container input {
    display: none;
}

.checkbox-container:hover {
    color: var(--text-white);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.02);
}

.checkbox-container input:checked+.checkmark {
    background: var(--primary-lime);
    border-color: var(--primary-lime);
    box-shadow: 0 0 10px rgba(212, 244, 88, 0.4);
}

.checkbox-container input:checked+.checkmark::after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: 800;
}

.forgot-password-link {
    color: var(--text-gray);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.forgot-password-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-lime);
    transition: width 0.3s;
}

.forgot-password-link:hover {
    color: var(--primary-lime);
}

.forgot-password-link:hover::after {
    width: 100%;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    background: var(--primary-lime);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 244, 88, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 244, 88, 0.4);
}

.btn-submit:hover::after {
    opacity: 0.2;
}

.btn-submit:active {
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1100px) {
    .login-form-container {
        width: 50%;
        padding: 40px;
    }

    .visual-title {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .login-visual {
        display: none;
    }

    .login-form-container {
        width: 100%;
        padding: 32px;
        border-left: none;
        background: var(--bg-dark);
        backdrop-filter: none;
    }

    .form-header {
        margin-top: 60px;
        /* Space for navbar */
    }
}