/* Auth Popup Styles */
.auth-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-popup {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    padding: 24px;
    position: relative;
    animation: popup-appear 0.3s ease;
}

@keyframes popup-appear {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.auth-popup-header h2 {
    font-size: 20px;
    color: #202124;
    margin: 0;
}

.auth-popup-close {
    background: none;
    border: none;
    color: #5f6368;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.auth-popup-close:hover {
    background-color: #f1f3f4;
    color: #202124;
}

.auth-popup-content {
    margin-bottom: 24px;
}

.auth-popup-content p {
    color: #5f6368;
    margin-bottom: 16px;
}

.auth-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-popup-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    width: 100%;
}

.auth-popup-buttons .btn i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-popup {
        width: 95%;
        padding: 20px;
    }
}
