.formEmail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 20px 0 20px;
    gap: 10px;
}

.emailTitle {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
}

.inputEmail {
    padding: 10px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    border: 1px solid #272727;
    height: 50px;
    width: 100%;
    border-radius: 5px;
    flex: 70%;
}

.buttonEmail {
    height: 50px;
    width: 100%;
    flex: 30%;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    background: #ff0582;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messageEmail {
    width: 200px;
    border-radius: 5px;
    text-align: center;
    padding: 5px;
    margin: 0 auto;
    font-size: 0.9em;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #888;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.emailText{
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 10px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}