/*Hoja de estilos CSS*/

/* Fuentes */
@font-face {
    font-family: 'roboto_slabregular';
    src: url('../font/RobotoSlab-Regular-webfont.eot');
    src: url('../font/RobotoSlab-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/RobotoSlab-Regular-webfont.woff') format('woff'),
         url('../font/RobotoSlab-Regular-webfont.ttf') format('truetype'),
         url('../font/RobotoSlab-Regular-webfont.svg#roboto_slabregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'roboto_slabthin';
    src: url('../font/RobotoSlab-Thin-webfont.eot');
    src: url('../font/RobotoSlab-Thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/RobotoSlab-Thin-webfont.woff') format('woff'),
         url('../font/RobotoSlab-Thin-webfont.ttf') format('truetype'),
         url('../font/RobotoSlab-Thin-webfont.svg#roboto_slabthin') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotothin';
    src: url('../font/Roboto-Thin-webfont.eot');
    src: url('../font/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/Roboto-Thin-webfont.woff') format('woff'),
         url('../font/Roboto-Thin-webfont.ttf') format('truetype'),
         url('../font/Roboto-Thin-webfont.svg#robotothin') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto_slablight';
    src: url('../font/RobotoSlab-Light-webfont.eot');
    src: url('../font/RobotoSlab-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/RobotoSlab-Light-webfont.woff') format('woff'),
         url('../font/RobotoSlab-Light-webfont.ttf') format('truetype'),
         url('../font/RobotoSlab-Light-webfont.svg#roboto_slablight') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Inicioapp*/

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

body {
    font-size: 10 px;
    margin:  0;
    padding: 0;
    background-color: #ededec;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
}

.contenedor{

    align-items: center;
    margin: auto;
    padding: 1em 0 3em;
    height: 100vh;
    
}
.slogan{
    font-family: 'robotothin';
    font-size: 1.2em;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}

.apertura{
    width: 93%;
}
.apertura img{
    width: 100%;
}
a{
    text-decoration: none;
}


   
#tp{
    width: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    
}

.contenedor-inputs  {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding:  0.5em;
    align-items:center;
    border: none;
    font-size: 0.6em;
    justify-content: space-between;
    font-family: 'roboto_slabthin';
    margin-top: 1em;
}


.dabajo {
    
    display: flex;
   flex-direction: column;
   width: auto;
    height: 20em; 
}

.form-btn {
    font-size: 1.1em;
    display: flex;
    margin: 1.2em 0 2.5em 0;
    justify-content: center;
    align-items:center;
    width: 100%;
    padding: 1em;
    color: #656565;
}
.form-link {
    font-size: 1.3em;
    display: flex;
    margin: 0.3em 0 0 0;
    justify-content: center;
    align-items:center;
    padding: 1em;
    color: #656565;
}
    .form-link a{
        margin-left: 0.5em;
        padding: 0;
        color: #ff56aa;
        text-decoration: underline;
        
    }

.recor{
    width: 100%;
    height: auto;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items:center;  
    font-size: 1.3em;
    margin-top: 1.5em;
    color:#656565;
}
.recor #recordarme{
    margin-right: 0.6em;
    
}

.boton-ingresar {
    border-radius: 0.6em;
    box-shadow: 0px 2px 4px 0px;
    color: #656565;
    display: block;
    padding: 0.2em 1.5em;
    font-size: 1.3em;
    letter-spacing: 0.3em;
    text-align: center;
    width: 100%;
    height: 2em;
    font-family: 'robotothin';
    cursor: pointer;
}
.boton-ingresar:hover {
    background-color: #ff56aa;   
}
.boton-ingresar:active{
    transform: scale(1.08);
}

.input-100 {
    font-size: 1.3em;
    width: 22em;
    height: 8em;
    margin-top: 1em;
    background: none;
    border: 0;
    border-bottom: 1px solid #a5a5a5;
    font-family: 'robotothin';
    letter-spacing: 0.08em;
    padding: 0.8em;
}




