/* css pop-up email */
section.hidden {
    display: none;
    background: rgba(0, 0, 0, .3);
    z-index: 10;
    position: fixed;
    inset: 0;
}

.container-full {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#processing-email-container .container-full div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(43, 48, 148, 0.8)
}

#processing-email-container svg {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }

}

#processing-email-container p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
}

.card {
    width: 100%;
    max-width: 28rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.thank-you-content {
    text-align: center;
}

.thank-you-content .check-icon {
    background-color: #dcfce7;
    color: var(--accent-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.thank-you-content h1 {
    font-size: 1.875rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.thank-you-content button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* end css pop-up email */

@media (max-width: 576px) {
    .container-full {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}