/* Auth Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f1419;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 1000px;
    background: #1a2332;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-bg {
    background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?q=80&w=2070&auto=format&fit=crop');
}

.signup-bg {
    background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?q=80&w=2070&auto=format&fit=crop');
}

.forgot-bg {
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2070&auto=format&fit=crop');
}

.auth-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 35, 50, 0.4), #1a2332);
}

.auth-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: #ffffff !important;
}

.auth-overlay-text h1 {
    color: #ffffff !important;
    font-size: 40px;
    margin-bottom: 10px;
}

.auth-overlay-text p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px;
}

.auth-form-container {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .auth-image {
        display: none;
    }

    .auth-form-container {
        width: 100%;
        padding: 40px;
    }
}

.auth-header h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 8px;
}

.auth-header p {
    color: #8b95a8;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #8b95a8;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: #101721;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.auth-btn {
    width: 100%;
    background: #FFD700;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.auth-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 215, 0, 0.5);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    color: #8b95a8;
    font-size: 14px;
}

.auth-footer a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* OTP Specific */
.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-input {
    width: 50px;
    height: 60px;
    background: #101721;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    margin-bottom: 40px;
    gap: 12px;
}

.step {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.step.active {
    background: #FFD700;
}

.step.completed {
    background: #4CAF50;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}