/* RedRhino Custom Login */
/* Creates a branded login page for the client */
@font-face {
  font-family: 'pier_bold';
  src: url('../assets/fonts/pier-bold-webfont.woff2') format('woff2'),
  url('../assets/fonts/pier-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'pier_reg';
  src: url('../assets/fonts/pier-regular-webfont.woff2') format('woff2'),
  url('../assets/fonts/pier-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body.login {
  background: #8f519f;
  font-family: 'pier_reg', Helvetica, Roboto, Arial, sans-serif;
}
.login h1{
    background-color:white;
    border-radius:4px;
    border:none;
    padding-top:1rem;
    padding-bottom:1rem;
    margin-bottom:1rem;
}

.login h1 a {
    width: 250px;
    background-image: url(../assets/images/BH_Logo_Stacked.svg);
    background-size: contain;
    /*background-color:white;*/
    background-position:center center;
    min-height:130px;
}

/*Labels*/

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

/*Inputs*/

.login input[type="text"], .login input[type="password"] {
    background: #efefef;
    border-radius: 0;
    border: 1px solid #aaaaaa;
    color: #212323;
    text-transform: none;
    margin-bottom: 25px;
    height: 47px;
    line-height: 47px;
    padding: 0 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: 'pier_bold', Helvetica, Roboto, Arial, sans-serif;
}
.login input[type="text"]:focus, .login input[type="password"]:focus, .login input[type=checkbox]:focus{
  border-color: #231f20;
  -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: #8f519f;
    color: #fff;
    border-radius: 0;
    border: none;
    font-family: 'pier_bold', 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: #ca4586;
    color: #fff;
    border-radius: 0;
    font-family: 'pier_bold', Helvetica, Roboto, Arial, sans-serif;
    box-shadow: none;
}

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

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

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

.login #nav a, .login #backtoblog a {
    color: #fff;
}
.login #nav a:hover, .login #backtoblog a:hover {
    color: white;
    opacity:0.8;
  -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: #eee;
  color: #231f20;
}
.login .message{
  border-left: 4px solid #ca4586;
}
.login #login_error{
  border-left: 4px solid #ec5840;
}
.login #login_error strong{
  color:#ec5840;
  font-family: 'pier_bold', Helvetica, Roboto, Arial, sans-serif;
}
.login input[type=checkbox]:checked:before{
  color:#ca4586;
}
