/* Colores:
Azul Oscuro: #284254
Azul: #3876a3
Celeste: #9fd9f3
Blanco: #e6e9db
Verde: #8fc590
Magenta #d0006e

*/
.contenedorcontacto {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/fondocontacto.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    max-height: 100%;
    
}
/*
.contenedorcontacto {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6e9db;
    
}
*/
.maincontacto {
    font-size: 3rem;
    background-color: rgba(40, 66, 84, 0.7); 
    width: 90%;
    display: flex;
    flex-flow: column;
    height: 45rem;
    max-width: 45rem;
    margin: auto;
}

.maincontacto h3 {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
    color: #e6e9db
    
}

.maincontacto form {
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-flow: column;
    font-size: 2.5rem;  
}

.maincontacto form input {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.maincontacto form textarea {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 9rem;
}

#botonform {
    background-color: #9fd9f3;
    width: 15rem;
    height:7rem;
    margin: 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items:center;
    color: #284254;
    font-weight: bold;
    cursor: pointer;
    
    
}