/* === MODAL POPUP === */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: modalSlideUp 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #5d6afb);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(52, 152, 219, 0.4);
}

.modal-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.modal-header h2 {
    color: var(--dark);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.modal-header p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.google-btn-custom {
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.google-btn-custom:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
}

.email-option {
    margin-top: 20px;
    text-align: center;
}

.email-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.email-link:hover {
    background: #f1f5f9;
}

.modal-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.footer-note {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* Google Button Container */
#googleButtonContainer {
    margin: 20px 0;
}

#googleButtonContainer div {
    width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden;
}

#googleButtonContainer iframe {
    width: 100% !important;
    border-radius: 14px !important;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }
}