@import 'https://fonts.googleapis.com/css?family=Rubik+One';
@import 'https://fonts.googleapis.com/css?family=Dosis';

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dosis', sans-serif;
}

.contacto{
    background-image: url(../img/Fondo4.png);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(83, 83, 83);
    width: 95%;
    background-attachment: fixed;
    /*height: 300px;*/
    margin: auto;
    margin-top: 10px;
    margin-bottom: 5px;
}
.txtContacto{
    background-color: rgb(181, 181, 181);
    font-family: 'Dosis', sans-serif;
    color:rgb(56, 56, 56);
    font-size: 20px;
    border-radius: 20px;
    width: 25%;
    height: 75%;
    padding: 10px 10px 30px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
.miniTituloContacto{
    font-size: 35px;
    margin-bottom: 10px;
}

@media only screen and (max-width : 600px) {
    .contacto{
        flex-direction: column;
    }
    .txtContacto{
        width: 85%;
        padding-left: 25px;
        padding-right: 25px;
        margin-top: 15px;
    }
}

/*******************************************************************/

.Form{
    background-color: rgba(181, 181, 181, 0.7);
    color:rgb(255, 255, 255);
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    width: 630px;
    /*margin: auto;*/
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 25px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.tituloForm{
    /*background-color: aqua;*/
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 40px;
    color:rgb(255, 255, 255)
}

.parte1{
    /*background-color: blue;*/
    margin-right: 20px;
}
.parte2{
    /*background-color: aqua;*/
    margin-left: 20px;
}



fieldset{
    border:none;
    display:flex;
    flex-direction: row;
}

legend{
    font-size: 30px;
    color: rgb(59, 59, 59);
    margin-bottom: 5px;
}
label{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 250px;
}

input:not([type="submit"]) {
    height: 20px;
    width: 170px;
    color:rgb(0, 51, 34);
    padding-left: 10px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(83, 83, 83);
    background-color: rgb(255, 126, 126);
    transition: all 300ms;
}
input:hover{
    background-color: rgb(150, 0, 0);
    color:white;
}
#areaTexto{
    resize: none;
    color:rgb(0, 51, 34);
    width: 170px;
    height: 100px;
    padding-left: 10px;
    padding-top: 5px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(83, 83, 83);
    background-color: rgb(255, 126, 126);
    transition: all 300ms;
}
#areaTexto:hover{
    background-color: rgb(150,0,0);
    color:white;
}

.boton{
    color:rgb(255, 255, 255);
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    width: 150px;
    height: 30px;
    cursor: pointer;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(67, 67, 67);
    background-color: rgb(230, 12, 38);
    display: flex;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    justify-content: space-around;
    transition: all 300ms;
}
.boton:hover{
    border-color: rgb(59, 59, 59);
    background-color: rgb(82, 3, 12);
    color:rgb(223, 223, 223);
}
.boton:active{
    border-color: rgb(58, 58, 58);
    background-color: rgb(74, 38, 42);
    color:rgb(255, 0, 0);
}

.ValidacionText{
    background-color: brown;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
}

@media only screen and (max-width : 600px) {
    fieldset{
        flex-direction: column;
    }
    .Form{
        width: 90%;
    }
    .tituloForm{
        width: 90%;
    }
    label{
        width: 300px;
        margin-bottom: 5px;
    }
    .parte1{
        /*background-color: blue;*/
        margin-right: 0;
    }
    .parte2{
        /*background-color: aqua;*/
        margin: 0;
    }
    .boton{
        margin-top: 40px;
    }
}