@charset "utf-8";
/* CSS Document */
*{
    margin:0;
    padding:0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
}
body{
    -webkit-background-size:cover;
    background-size: cover;
    background-attachment: fixed;
    font-family: roboto;   
    background-color: #F4F2F7;

}
.jumbotron{
    background-image: url('../imagenes/jumbobarra.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color:white;
    
    }
.container {
    position:relative;
    background:rgba(254,254,254,0.85);
    width: 90%;
    min-width: 500px;
    max-width: 1000px;
    margin: 50px auto;
    color:blue;
    border-radius: .5px;
}
.container .toggle{
    position: absolute;
    top:7px;
    right:7px;
    width:100px;
    height: 30px;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
    border-top: 2px solid red;
    border-bottom: 2px solid RED;
    transition: all 5s ease;
    cursor: pointer;
}
.container .toggle span{
    letter-spacing: 1px;
}

.container .toggle:hover{
    border-top: 2px solid #0075d9;
    border-bottom: 2px solid #0075d9;
}

.container h2{
    margin: 0 0 28px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

}
.container input[type="text"],.container input[type="password"],.container input[type="email"]{
    outline: none;
    background: rgba(254,254,254,0.5);
    display: block;
    width:100%;
    padding: 10px 15px;
    color:#000;
    border:none;
    border-radius: 2px;
    border-bottom: 4px  solid #FF0000;
    font-family:roboto;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 20px 0;
    transition: all .5s ease;

}
.container input[type="text"]:focus,.container input[type="password"]:focus,.container input[type="email"]:focus{
    border-bottom: 4px solid #FF0000;
}

.container input[type="submit"]{
    background: RED;
    font-color: white;
    border: none;
    width: 100%;
    padding: 10px 0;
    font-weight: normal;	
    font-family: Roboto;
    letter-spacing: 1px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.container input[type="submit"]:hover{
    background: rgba(0,117,217,0.5);
}

.container .reset-password{
    background: rgba(0,117,217,0.5);
    color: #fff;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.container .reset-password a{
    color:#fff;
    text-decoration: none;
    font-size: 16px;

}
.container .formulario{
    padding: 40px;
    display:none;

}
.container .formulario:nth-child(2){
    display: block;

}
.centralo{
    margin:auto;
    max-width:80%;
}