/* Auth Modal Styles */
.auth-modal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.auth-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
    border-bottom: none;
}

.auth-modal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.auth-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.auth-modal .btn-close:hover {
    opacity: 1;
}

.auth-modal .modal-body {
    padding: 2rem;
}

.btn-auth-solid {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-auth-solid:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Facebook browser warning */
#fb-browser-warning-signup {
    font-size: 0.875rem;
}

.auth-modal .text-muted {
    color: #6c757d;
}

.auth-modal .border-top {
    border-top-color: #e9ecef !important;
}