/* Auth Pages Styling */
.auth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6c757d;
}

/* Form Styling */
.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-form-group label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.auth-form-control {
    height: 48px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.auth-form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Social Login Buttons */
.social-login {
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.google-btn {
    background: #fff;
    border: 2px solid #ddd;
    color: #333;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.facebook-btn {
    background: #1877f2;
    border: none;
    color: #fff;
}

.facebook-btn:hover {
    background: #166fe5;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.auth-divider span {
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Buttons */
.auth-btn {
    height: 48px;
    padding: 0.375rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-btn-primary {
    background: #000;
    border: none;
    color: #fff;
}

.auth-btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Error Messages */
.auth-error {
    background: #fff3f3;
    color: #dc3545;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Success Messages */
.auth-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }
    
    .auth-card {
        margin: 0 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-card {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Checkbox */
.auth-checkbox {
    display: flex;
    align-items: center;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.auth-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #495057;
}

/* Links */
.auth-link {
    color: #333;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.auth-link:hover {
    color: #000;
    text-decoration: none;
}

/* Form Help Text */
.auth-help-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    margin-top: 0.5rem;
    border-radius: 2px;
    background: #e9ecef;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.strength-weak { background: #dc3545; width: 33%; }
.strength-medium { background: #ffc107; width: 66%; }
.strength-strong { background: #28a745; width: 100%; }