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

body{
    background-color: white;
}
a{
    text-decoration: none;
    color:#004900;
    font-size: 15px;
}
h1{
    color:rgb(49, 49, 49);
    font-family: 'Dosis', sans-serif;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}
h2{
    color:rgb(49, 49, 49);
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.barra{
    background-color: #009900;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    border-radius: 5px;
    color:rgb(225, 255, 222);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 40px;
}
.titulo{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #009900;
    border-radius: 5px;
    color:white;
    height: auto;
    width: 50%;
    margin: auto;
    margin-top: 3px;
    margin-bottom: 3px;
}
.FormLogin{
    background-color: rgb(210, 240, 214);
    color:rgb(59,59,59);
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    width: 350px;
    margin: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
    border-radius: 10px;
    margin-bottom: 10px;
}

fieldset{
    border:none;
}

legend{
    font-size: 30px;
    color: rgb(59, 59, 59);
}
label{
    display:flex;
    flex-direction: column;
    width: 200px;
}

input:not([type="submit"]) {
    height: 20px;
    padding-left: 10px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: brown;
}

.boton{
    color:white;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    width: 150px;
    height: 40px;
    cursor: pointer;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #9effa6;
    background-color: #009900;
    display: flex;
    margin: auto;
    justify-content: space-around;
    transition: all 300ms;
}
.boton:hover{
    border-color: #009900;
    background-color: #9effa6;
    color:rgb(7, 53, 0);
}
.boton:active{
    border-color: rgb(55, 0, 98);
    background-color: rgb(102, 51, 116);
    color:rgb(157, 113, 211);
}

.ValidacionText{
    background-color: #004900;
    color:white;
    font-family: 'Dosis', sans-serif;
    font-size: 12px;
    padding-left: 10px;
}

@media only screen and (max-width : 600px) {
    .barra{
        font-size: 12px;
    }
    .titulo{
        width: 99%;
    }
    h1{
        font-size: 25px;
    }
    .FormLogin{
        width: 99%;
    }
    label{
        width: 300px;
    }
}