/* Authentication Pages Styling */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

[data-bs-theme="dark"] .auth-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.auth-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease;
}

[data-bs-theme="dark"] .auth-container {
    background: #2d2d44;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-illustration {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.auth-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.auth-form {
    padding: 60px 40px;
}

.auth-form .form-control,
.auth-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.auth-form .input-group-text {
    background: transparent;
    border: 2px solid #e0e0e0;
    border-right: none;
}

.auth-form .input-group .form-control {
    border-left: none;
}

.auth-form .input-group .btn-outline-secondary {
    border: 2px solid #e0e0e0;
    border-left: none;
}

.auth-form .btn-gradient {
    padding: 14px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .auth-container {
        max-width: 500px;
    }
    
    .auth-form {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .auth-page {
        padding: 10px;
    }
    
    .auth-container {
        border-radius: 15px;
    }
    
    .auth-form {
        padding: 30px 20px;
    }
}