*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

header{
    width: 65%;
}

header img{
    width: 100px;
    margin-left: 40px;
    margin-top: 40px;
}

main{
    width: 65%;
}

.content-form{
    width: 100%;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 1000ms;
    transition: all 1000ms;
}

.content-form h1{
    text-align: center;
    font-size: 60px;
}

.content-form h4{
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.content-form h4 a{
    color: #0061ea;
}

.content-form form{
    width: 400px;
    margin: auto;
    margin-top: 40px;
}

/*Email*/

.content-form .lbl-email{
    position: absolute;
    margin-top: 10px;
    font-size: 12px;
}

.content-form #input-username{
    width: 100%;
    padding: 10px;
    border-style: none;
    outline: 0px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 12px;
}

.content-form #input-username:focus{
    border-bottom: 2px solid #0061ea;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    font-weight: bold;
}

/*Contraseña*/

.content-form .lbl-clave{
    display: block;
    position: absolute;
    margin-top: 50px;
    font-size: 12px;
}

.content-form #input-password{
    width: 100%;
    padding: 10px;
    border-style: none;
    outline: 0px;
    border-bottom: 1px solid #e2e2e2;
    margin-top: 40px;
    font-size: 12px;
}

.content-form #input-password:focus{
    border-bottom: 2px solid #0061ea;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    font-weight: bold;
}