@font-face {
    font-family: 'Futura';
    src: url(../Fonts/FuturaLT-Light.woff) format('woff');
}

body {
    font-family: 'Futura', Arial, sans-serif !important;
}

.container {
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

h1 {
    margin-top: 50px;
    font-family: Futura;
}

.visually-hidden{
  position: absolute;
  left:-9999px;
}

input, textarea {
    border-radius: 5px;
    width: 20rem;
    font-family: Futura;
    border: 1px solid black;
    outline: none;
    height: 1.5rem;
}

._button {
    border-radius: 5px;
    font-family: Futura;
    background-color: #59595b;
    color: white;
    border: 1px solid black;
    outline: none;
    cursor: pointer;
}

    ._button:hover {
        background-color: #7e9e3e
    }


p{
    font-family: Futura;
}

.main-content {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 50px auto;
}

.left-div, .right-div {
    width: 50%;
}


.left-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
}

    .left-div input {
        margin-bottom: 10px;
    }

    .left-div form {
        text-align: left;
    }

    .left-div input{
        margin: 1rem auto;
    }

    .left-div textarea {
        margin: 1rem auto;
    }

    .right-div {
        text-align: center;
        margin-left: 20px; /* Espacio entre los divs */
    }

._logo {
    height: 15rem;
    width: auto;
}

.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-row img {
        width: 1rem; /* Ancho de las imágenes */
        margin: 0 5px; /* Espacio entre las imágenes */
    }

/*para tablets y telefonos grandes */

@media screen and (max-width: 767px) and (min-width: 401px) {

    .nav-links{
        display: none;
    }

    .main-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    form{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .right-div{
        margin-left: 0;
        width: 70%;
    }

    .right-div img{
        max-width: 100%;
    }
}

/* Para teléfonos en modo vertical y pantallas más pequeñas */
@media screen and (max-width: 420px) {

    ._h1 {
        font-size: 1.5rem;
    }

    .main-content {
        display: block;
        width: 100%;
    }

    .left-div {
        padding-top: 2rem;
    }

    .left-div, .right-div {
        width: 70%;
        margin: 0 auto;
    }

        .left-div form {
            text-align: center;
            width: 100%;
        }

        .left-div input {
            margin: 1rem auto;
            width: 100%;
        }

        .left-div textarea {
            margin: 1rem auto;
            width: 100%;
        }

    .container {
        margin-top: 7rem;
    }

    .main-content {
        margin: 5px auto;
    }

    ._logo {
        height: 10rem;
    }

    p {
        font-size: 11px;
    }


}
