* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.contacto {
   
    width: 100%;
    text-align: center;
    background-color: #ffff ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacto h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    margin-top: -30px;
}

.formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px; /* Espaciado entre el cuadro de entrada y los botones */
}

.input-container {
    display: flex;
    align-items: center;
    border: 2px solid black;
    background-color: white;
    padding: 10px;
    width: 380px;
    height: 50px;
    margin-left: -40px;

}

.input-container .icon {
    font-size: 1.6rem;
    color: #c0669e;
    /* Color del ícono */
    padding-right: 20px;
    margin-right: -10px;
}

.input-container input {
    border: none;
    outline: none;
    font-size: 1rem;
    flex-grow: 1;
    height: 100%;
    padding: 5px;
}

.button-container {
    display: 0.2px;
    /* Espaciado entre los botones */
}

.btn-enviar,
.btn-limpiar {
    background-color: #c0669e;
    border: 2px solid black;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    height: 50px;
    /* Altura igual al cuadro de texto */
    cursor: pointer;
    text-transform: uppercase;
}

.btn-enviar:hover,
.btn-limpiar:hover {
    background-color: #c0669e;
}

.raya hr {
    display: block;
    border: 0;
    border-top: 2px solid black;
    width: 240%;
    position: relative;
    left: -150px;
    /* Ajusta el valor para moverlo hacia la izquierda */
    margin-top: 30px;
}




.logos {
    width: 350px;
    margin: 20px 0;
}

.facebook-icon {
    display: inline-block;
    background-color: #4267B2;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
}

.facebook-icon:hover {
    background-color: #365899;
}

@media screen and (max-width: 767px) {
    .contacto {
        margin-top: 45px;
        height: 50vh;
    }

    .contacto h1 {
        font-size: 2rem;
        margin-bottom: 20px;

    }
     
    .input-container {
        flex-wrap: wrap; /* Permite que el input y los botones se acomoden */
        margin-left: 10px;
        height: 60px;
        width: 320px;
        margin-top: -50px;
        
    }

    .input-container input {
        height: 40px;
        width: 250px;

    }    

    .button-container {
        flex-direction: row; /* Mantiene los botones en una fila */
        gap: 2px;
    }

    .btn-enviar,
    .btn-limpiar {
        font-size: 1rem; /* Reduce aún más el tamaño en móviles */
        padding: 4px 20px;
        height: 40px;
        margin-top: 20px; 
        margin-left: 50px;
        margin-right: -48px;
       
    }

    .logos {
        width:260px;
        margin: 30px 0;
    }
    


    
}