/* RedRhino Custom Login */
/* Creates a branded login page for the client */

body.login {
  background: #E7EFF5;
    font-family: "Lato",Helvetica, Roboto, Arial,sans-serif;
}

.login h1{
}
.login h1 a {
    width: 100%;
    background-image: url(../assets/images/login-race-logo.png);
    background-size: contain;
    height:200px;
}
.login form{
    background-color:white;
    border-radius:4px;
}

/*Labels*/

.login label {
    font-size: 14px;
    color: #231f20;
    font-family: "Lato",Helvetica, Roboto, Arial,sans-serif;
    text-transform: uppercase;
}

/*Inputs*/

.login input[type="text"], .login input[type="password"] {
    background: #f3f3f3;
    border-radius: 0;
    border: none;
    color: #322f31;
    text-transform: none;
    margin-bottom: 25px;
    height: 47px;
    line-height: 47px;
    padding: 0 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: "Lato",Helvetica, Roboto, Arial,sans-serif;
}
.login input[type="text"]:focus, .login input[type="password"]:focus, .login input[type=checkbox]:focus{
  border-color: #1E1D1D;
  -webkit-box-shadow: 0 0 2px rgba(35,31,32,.8);
  box-shadow: 0 0 2px rgba(35,31,32,.8);
}

/*Login Button*/

.login .button-primary {
    font-weight: 700;
    text-transform: uppercase;
    background: #d22030;
    color: #fff;
    border-radius: 0;
    border: none;
    font-family: 'Lato', Helvetica, Roboto, Arial, sans-serif;
    border-color: none;
    text-shadow: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: none;
  line-height: 2rem;
}

.login .button-primary:hover, .login .button-primary:active, .login .button-primary:focus  {
    background: #01345c;
    color: #fff;
    border-radius: 0;
    font-family: 'Lato', Helvetica, Roboto, Arial, sans-serif;
    box-shadow: none;
}

.login .button-primary:active {
    background:#01345c;
}

.login .button-primary:focus {
    background: #01345c;
}

.login #backtoblog a, .login #nav a {
    color: #005596;
}

.login #nav a, .login #backtoblog a {
    color: #005596;
}
.login #nav a:hover, .login #backtoblog a:hover {
    color: #d22030;
    opacity:1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.login #login_error, .login .message{
  background: rgba(0,0,0,0.1);
  color: #231f20;
}
.login .message{
  border-left: 4px solid #005596;
}
.login #login_error{
  border-left: 4px solid #ec5840;
}
.login #login_error strong{
  color:#005596;
  font-family: 'Lato', Helvetica, Roboto, Arial, sans-serif;
}
.login input[type=checkbox]:checked:before{
  color:#005596;
}
