/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 23/11/2018, 09:36:53 AM
    Author     : Antonio Guzman
*/
body{
    background-color: #F4F2F7;
}
.jumbotron{
    height: 125px;
    background-image: url('../imagenes/jumbobarra.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color:white;
    
    }
.panel-heading{
    background-color: #CBCACC !important;
}
.navbar{
    background-color: #CBCACC;
}
.navbar-brand:link, .navbar-brand:visited{
    color:deepskyblue !important;
}
.navbar-brand:hover, .navbar-brand:active{
    color:red !important;
}
#navbar li a:link, #navbar li a:visited{
    color:blue;
}
#navbar li a:hover, #navbar li a:active{
    color:black;
}
.formulario{
    background:rgba(254,254,254,0.8);
	width: 100%;
	max-width: 650px;
	min-width: 200px;
	margin:auto;
	margin-top:0px;
}
.marco{
    margin:auto;
}
input[type="submit"]{
    cursor:pointer;
    display:inline-block;
    padding: 15px;
    width:100%;
}
.container {
    position:relative;
    background:rgba(254,254,254,0.85);
    width: 95%;
    min-width: 400px;
    max-width: 1000px;
    margin: 20px auto;
    color:blue;
    border-radius: .5px;
}
.container .toggle{
    
    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;
    
    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%;
}
.error{
    color:red;
    font-weight:bold;
}