@import url('https://fonts.googleapis.com/css?family=Open+Sans');


html { 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #8e9eab; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #8e9eab , #eef2f3); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #8e9eab , #eef2f3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}


/****** LOGIN MODAL ******/
.loginmodal-container {
  padding: 30px;
  max-width: 350px;
  width: 100% !important;
  background-color: #F7F7F7;
  margin: 0 auto;
  margin-top: 100px;
  border-radius: 1px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px #fff solid;
  -webkit-box-shadow: 0px 1px 8px 2px rgba(112,112,112,1);
  -moz-box-shadow: 0px 1px 8px 2px rgba(112,112,112,1);
  box-shadow: 0px 1px 8px 2px rgba(112,112,112,1);
}

.loginmodal-container h1 {
  text-align: center;
  font-size: 1.6em;
  color: #5c5c5c;
}

.loginmodal-container input[type=submit],
.loginmodal-container input[type=button],
.loginmodal-container button {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.loginmodal-container input[type=text], .loginmodal-container input[type=password], .loginmodal-container input[type=number] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
   /*border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.loginmodal-container input[type=text]:focus, .loginmodal-container input[type=password]:focus
{
  color: #5e5e5e;
  border: 1px solid #b0b0b0;
  outline: none;
}

.loginmodal-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loginmodal {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
  border-radius: 3px; 
 -webkit-user-select: none;
  user-select: none; 
}

.loginmodal-submit {
  border: 1px solid #3079ed; 
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #0575E6;
  padding: 17px 0px;
  font-size: 15px;
}

.loginmodal-submit:hover {
  border: 1px solid #2f5bb7; 
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #0575E6;
  opacity: 0.8;
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  font-size: 8pt;
  /*opacity: 0.6;*/
  /*transition: opacity ease 0.5s;*/
} 

.loginmodal-container .login-help{
  font-size: 12px;
}

.loginmodal-container .forgot-pass:hover {
  text-decoration: underline;
  color: #0b63bc;
  -webkit-transition-duration:.5s;
    -moz-transition-duration:.5s;
      transition-duration:.5s;
}



.loginmodal-container .btn-disabled
{
  opacity: 0.6;
}

.loginmodal-container .btn-disabled:hover
{
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: not-allowed;
}

