/* ========== LOGIN PAGE STYLES ========== */
.login-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark);
    border: 1px solid var(--border-light);
}

/* ========== LEFT SIDE (PROMO) ========== */
.login-left {
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.login-promo {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-promo h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.login-promo > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.promo-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-primary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--text-primary);
    opacity: 0.9;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.bonus-highlight {
    margin-top: auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.bonus-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ========== RIGHT SIDE (SIMPLE) ========== */
.login-right {
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-simple-container {
    width: 100%;
    max-width: 380px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ========== LOGIN BUTTON ON LEFT SIDE ========== */
.login-button-container {
    margin: 40px 0;
    text-align: center;
}

.login-action-btn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-action-btn:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ========== SIMPLIFIED RIGHT SIDE ========== */
.simple-login-btn-wrapper {
    margin: 40px 0 30px 0;
}

.simple-login-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 12px;
    color: var(--primary-bg);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.simple-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
}

/* ========== DIVIDER ========== */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
}

.divider span {
    background: var(--secondary-bg);
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* ========== SOCIAL LOGIN ========== */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.social-btn:hover {
    border-color: var(--border-medium);
    transform: translateY(-1px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.google-btn:hover {
    border-color: #4285F4;
}

.facebook-btn:hover {
    border-color: #1877F2;
}

/* ========== SIGNUP LINK ========== */
.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link p {
    font-size: 14px;
    color: var(--text-secondary);
}

.signup-link a {
    color: var(--accent-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: var(--accent-secondary);
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .login-left {
        padding: 40px 30px;
        order: 2;
    }
    
    .login-right {
        padding: 40px 30px;
        order: 1;
    }
    
    .login-promo h2 {
        font-size: 24px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .login-container {
        padding: 15px;
    }
    
    .login-left,
    .login-right {
        padding: 30px 20px;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}