*{
   padding: 0px;
   margin: 0px;
   font-family: Century Gothic;
 
}
body{
    background-color: white; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.padre
{
    padding:25px;
    display: flex;
    flex-direction:row;
    flex-wrap:wrap;
    margin:auto;
    max-width: 800px;
    background-color: #fff;
    justify-content: center;
}
.hijo
{
    width: 360px;
    height: 480px;
    background-color:  #686565;
    padding: 10px;
    color:white;
}
.hijo:first-child
{
    background-color: #9d0e0e;
}
.contenedor_texto
{
    padding:25px;
     justify-content: center;
    align-items: center;
}
.caja_texto
{
    margin-top: 10px;
    height: 30px;
    width:100%;
    background-color: gray;
    padding-left: 5px;
    color:white;
}
.caja_texto_pasword
{
    margin-top: 10px;
    height: 30px;
    width:100%;
    background-color: gray;
    padding-left: 5px;
    color:white;    
}
.boton
{
    width: 100%;
    height: 45px;
    color: white;
    background-color: #9d0e0e;
    border-radius: 18px;
    border-color: #fff;
    border-style: solid;
}
.label
{
 color:white;   
}
.contenedor_dashboard
{
    display: flex;
    flex-direction:row;
    flex-wrap:wrap;
    margin:auto;
    max-width: 800px;
    background-color: #660066;
    justify-content: left;
}
@media(max-width:600px)
{
    .home{flex-direction: column;}
}
