#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;

    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .6);

    z-index: 1000000;
}

.modal {
    box-sizing: border-box;

    width: 90%;
    max-width: 500px;

    padding: 2rem;

    border-radius: 1rem;

    background-color: #fff;

    text-align: center;

    animation: fadeIn .5s ease;
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);

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

.modal h2 {
    margin: 0;

    font-size: 1.8rem;
    font-family: 'lato', Arial, sans-serif;
}

.modal p {
    margin-bottom: 1.5rem;
    
    font-family: 'poppins', Arial, sans-serif;

    color: #4b5563;
}

.modal input {
    box-sizing: border-box;

    width: 100%;

    margin-bottom: 1rem;

    padding: .75rem;

    border: 1px solid #d1d5db;
    border-radius: .5rem;

    font-size: 1rem;
}

.modal button {
    width: 100%;

    padding: 0.75rem;

    border: none;
    border-radius: .5rem;

    color: white;
    background-color: #2563eb;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: background-color .3s ease;
}

.modal button:hover {
    background-color: #1d4ed8;
}

.modal .contact-email { margin-top: 10px; }

.modal .contact-email p {
    margin: 0;

    font-size: .9rem;

    color: #6b7280;
}

.modal .contact-email span {
    font-weight: bold;

    color: #111827;
}