html, body {
    background-color: #f3f3f3;
    font-family: 'Questrial', sans-serif;
    height: 100%;


}
body{
    width: 100%;
    background-color: #eee;
    background-size: cover;
    background-position: center top;
}

.login-wrapper-bg{
    display: block;
    position: relative;
    top: 0;
    left: 0;
    
}
.form-signin.centerx{
    position: absolute;
    top: 50%;  
    left: 50%; 
    transform: translate(-50%, -50%);
}
.form-signin {
    position: absolute;
       top: 50%;  
       left: 50%; 
       transform: translate(-50%, -50%);
    min-width: 300px;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.form-signin .form-signin-heading {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 3rem;
    text-align: center;
    color: #2c343f;
}
.form-signin .main-error-message {
    color: red;
    margin-bottom: 5px;
    font-size: 1.3rem;
    text-align: center;
}
.form-signin .input-error-message {
    color: red;
    margin: 5px 0;
    font-size: 1.3rem;
    text-align: left;
}
.form-signin .form-control {
    border: 0;
    background-color: #fff;
    box-shadow: none;
}
.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin .form-group {
    width: 100%;
    margin-bottom: 10px;
}

.form-signin .form-group .input-group {
    width: 100%;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
}

.form-signin .form-group .input-group .input-group-addon {
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    color: #9a1452;
}

.form-signin button.login {
    background-color: #FE7D31;
    border-style: solid!important;
    border-width: 1px;
    border-color: #D46828!important;
    color: #003162;
    font-weight: bold;
    font-size: 25px;
}

div.forgotPwLink {
    text-align: right;
    padding-top: 15px;
    margin-top: 0px;
    font-size: 14px;
}

div.forgotPwLink a,
div.forgotPwLink a:hover,
div.forgotPwLink a:active,
div.forgotPwLink a:visited {
    color: #2c343f;
}
.footer-copyright{
    background-color: #fff!important;
}
@media(max-width: 767px){
    
    .footer-copyright{

        position: fixed!important;
        bottom: 0!important;
        left: 0!important;
        width: 100%!important;
        
    }

    body{
        padding: 20px 0;
    }

    .form-signin{
        display: block;
        margin: 0px auto;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 10px;
    }
    .footer-copyright{
        padding: 5px;
    }
    .footer-copyright ul li a{
        border: 0!important;
        display: block;
        padding: 3px 0;
    }
    
    
    .remember-me-text{
        margin-left: 20px!important;
    }
}

.fa-fw{
    color: #FEBD31;
}

.input-group{
    border-style: solid!important;
    border-width: 1px;
    border-color: #003162!important;
}

a{
    color: #003162!important;
}

label{
    color: #003162!important;
}

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ddd;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #FE7D31;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .remember-me-text{
      margin-left: 40px;
      font-size: 20px;
  }
  
  .position-inherit {
      position: inherit !important;
  }
  
  .font-18 {
      font-size: 18px !important;
  }
  
  .input-fix {
      opacity: 100 !important;
      cursor: text !important;
      height: auto !important;
  }