.contact {
    margin: 0 0 50px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-title {
    text-align: center;
    font-size: 2.5em;
}

.form-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.formulario {
    width: 800px;
    max-width: 90%;
    font-size: 1.5em;
    padding: 5px;
    border: solid 2px #FFFFFF;
    border-radius: 10px;
}

.btn-submit {
    width: 400px;
    height: 50px;
    color: #FFFFFF;
    background-color: #303030;
    border: solid 2px #FFFFFF;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.5em;
}

.btn-submit:hover {
    color: #2C8BE4;
    background-color: #FFFFFF;
    font-weight: 600;
    cursor: pointer;
}

.form-sent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px 10px 120px 10px;
    gap: 50px;
}

@media screen and (max-width: 800px) {
    main {
        width: 100vw;
        overflow: hidden;
    }

    .contact {
        width: 90%;
    }

    .contact-title {
        font-size: 1.5em;
    }

    .formulario {
        width: 100%;
        font-size: 1em;
    }

    .btn-submit {
        width: 80%;
        height: 50px;
        font-size: 1em;
    }

    .form-sent {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 60px 10px 60px 10px;
        gap: 50px;
    }
}
