.contactoContainer {
    width: 80%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 40px;
}

.formContainer {
    /* display: flex; */
    /* justify-content: space-between; */
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}

.formTitle {
    color: black;
    font-size: 30px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}

.contactForm {
    width: 49%;
    display: flex;
    flex-direction: column;
}

.inputContainer {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.inputContainer input {
    background: #F2F2F2;
    border-radius: 5px;
    height: 40px;
    font-size: 13px;
    padding-left: 20px;
    color: black;
}

.inputContainer input::placeholder {
    color: #747474;
    font-size: 12px;
}

.inputName {
    font-size: 12px;
    color: black;
    margin-bottom: 8px;
    font-weight: 500;
}

textarea {
    resize: none;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    background: #F2F2F2;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    height: -webkit-fill-available;
    color: black;
    padding-bottom: 20px;
}

.inputsContainer {
    display: flex;
    justify-content: space-between;
}

.contactForm.mensaje {
    margin-top: 20px;
}

.bottomImageContacto {
    width: 100%;
}

.botonEnviarContacto {
    background: black;
    border-radius: 20px;
    width: 150px;
    cursor: pointer;
    margin: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}

.botonEnviarContacto:hover {
    background: white;
    color: black;
}


@media screen and (max-width: 768px) {
    .inputsContainer {
        flex-direction: column;
        flex-direction: column;
    }

    .contactForm {
        width: 100%;
    }

    textarea {
        height: 220px;
    }

    .formContainer {
        margin-bottom: 40px;
    }
    .botonEnviarContacto {
    width: 100%;
}
}