/* Signup Page */
html{
    min-height: 100%;
  }
  .login-page{
      background: url("../revslider/assets/bg.png") no-repeat center;
      background-size: cover;
  }
  
  .form-container{
      padding: 80px 0;
  }
  .signup-content {
      padding:50px 0 25px 0;
  }
  .signup-logo{
   text-align: center;
  }
  .signup-logo a{
   display: inline-block;
  }
  .signup-logo a img{
      display: block;
      max-width: 100%;
      width: 200px;
      margin: 0 auto;
  }
  .signup-banner{
      margin: 0 10%;
  }
  .signup-banner img{
      display: block;
      max-width: 100%;
      margin: 0 auto;
  }
  .signup-banner h3{
      color: #386995;
      font-weight: 600;
      line-height: 1.25;
      font-size: 24px;
      margin: 0;
      text-align: center;
  }
  .signup-banner p{
      color: #666666;
      line-height: 1.6em;
      font-size: 15px;
      margin: 0;
  }
  .form-fields{
      width: 90%;
      max-width: 1200px;
      background: #fff;
      margin: 0 auto;
      -o-box-shadow: 0 15px 16.83px .17px rgba(0,0,0,.05);
      -ms-box-shadow: 0 15px 16.83px .17px rgba(0,0,0,.05);
      border-radius: 4px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      -o-border-radius: 4px;
      -ms-border-radius: 4px;
      -webkit-box-shadow:0px 10px 40px 0px rgba(0, 0, 0, 0.05);
      box-shadow:0px 10px 40px 0px rgba(0, 0, 0, 0.05);
  }
  .signup-form{
      margin: 0 10%;
  }
  .signup-form .form-control{
      box-shadow: none !important;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 5px 0 0;
      height: 45px;
  }
  .signup-form .form-control:focus{
   border-bottom-color: #66afe9;
  }
  .signup-form h2{
      margin-top: 0;
      margin-bottom:25px;
      font-size: 2em;
  }
  .login-options{
      list-style:none;
      margin: 0;
      padding: 0;
  }
  .login-options li{
   display: inline-block;
   margin-left:20px;
  }
  .login-options li:first-child{
   margin-left: 0;
  }
  .login-options li span{
    padding-left:4px;
    font-size: 16px;
    vertical-align: middle;
  }
  .signup-form .form-group{
      position: relative;
      padding-top: 10px;
    }
  /*---------------------------------------------*/
  .focus-input {
      position: absolute;
      display: block;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
  }
  
  .focus-input::before {
      content: "";
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 1px;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      background: #66afe9;
  }
  
  .focus-input::after {
      font-size: 15px;
      color: #999999;
      line-height: 1.2;
      content: attr(data-placeholder);
      display: block;
      width: 100%;
      position: absolute;
      top: 24px;
      left: 0px;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
  }
  
  .signup-form .form-control:focus+.focus-input::after {
      top: -2px;
  }
  
  .signup-form .form-control:focus+.focus-input::before {
      width: 100%;
  }
  
  .has-val.form-control+.focus-input::after {
      top: -2px;
  }
  
  .has-val.form-control+.focus-input::before {
      width: 100%;
  }
  /*---------------------------------------------*/
  
  .btn-show-pass {
      font-size: 15px;
      color: #999999;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      position: absolute;
      height: 100%;
      top: 0;
      right: 0;
      padding-right: 5px;
      cursor: pointer;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
  }
  
  .btn-show-pass:hover,
  .btn-show-pass.active {
      color: #66afe9;
  }
  
  .login-link{
      float: right;
      margin-bottom: 0;
      margin-top: 10px;
      font-size: 15px;   
  }
  .login-copy-right{
      display: -webkit-box;
      display: -moz-box;  
      display: -ms-flexbox; 
      display: -webkit-flex;
      display: flex; 
      align-items: center;
      justify-content: space-between;
      padding: 20px 50px;
  }
  .login-copy-right p{
      margin: 0;
      color: #808080;
      font-size: 13px;
  }
  .login-copy-right ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .login-copy-right ul li{
   display: inline-block;
   margin: 0 15px;
  }
  .login-copy-right ul li a{
   font-size: 13px;
  }
  .account-link p{
      font-size: 15px;
  }
  .remember-checkbox{
      margin: 0;
      font-weight: normal;
      font-size: 15px;
  }
  /* Custom Checkbox */
.custom_checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 1px solid #ccc;
  }
  
  /* On mouse-over, add a grey background color */
  .custom_checkbox:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom_checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom_checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom_checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }