/* FORM */
html {
  position: relative;
  min-height: 100%;
}
body.auth {
  background-color: #EFEFEF;
	font-weight: 300;
  margin-bottom: 60px; /* Margin bottom by footer height */

}
.login-form-1 {
  /*max-width: 300px;*/
  border-radius: 10px;
  display: inline-block;

  /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
  width: 500px;
  background: #ddd; /*#efefef*/
  padding: 3em;
  -webkit-box-shadow: 0px 10px 64px -10px rgba(0,0,0,.7);
  box-shadow: 0px 10px 64px -10px rgba(0,0,0,.7);
}
.main-login-form {
  position: relative;
}
.login-form-1 .form-control {
  border: 0;
  box-shadow: 0 0 0;
  border-radius: 0;
  background: transparent;
  color: #555555;
  /* padding: 7px 0; */
  height:auto;
}
.login-form-1 .form-control::-webkit-input-placeholder {
  color: #999999;
}
.login-form-1 .form-control:-moz-placeholder,
.login-form-1 .form-control::-moz-placeholder,
.login-form-1 .form-control:-ms-input-placeholder {
  color: #999999;
}
.login-form-1 .form-group {
  margin-bottom: 0;
  border-bottom: 2px solid #ccc; /*#efefef;*/
  padding-right: 20px;
  position: relative;
}
/*
  .login-form-1 .input-group-addon {
    border:0 none;
    border-radius: 0;
  }
*/
.login-form-1 .form-group:last-child {
  border-bottom: 0;
}
.login-group {
  background: #ffffff;
  color: #999999;
  border-radius: 8px;
  padding: 10px 20px;
}
.login-group-checkbox {
  padding: 5px 0;
}
/*=== 5. Login Button ===*/
.login-form-1 .login-button {
  position: absolute;
  right: -25px;
  top: 50%;
  background: #ffffff;
  color: #0c6dab;
  padding: 10px 0;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 5px solid #ccc; /*#efefef;*/
  border-radius: 50%;
  transition: all ease-in-out 500ms;
}
.login-form-1 .login-button:hover {
  color: red;
  transform: rotate(450deg);
}
.login-form-1 .login-button.clicked {
  color: #555555;
}
.login-form-1 .login-button.clicked:hover {
  transform: none;
}
.login-form-1 .login-button.clicked.success {
  color: #2ecc71;
}
.login-form-1 .login-button.clicked.error {
  color: #e74c3c;
}
/*=== 6. Form Invalid ===*/
label.form-invalid {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: block;
  margin-top: -25px;
  padding: 7px 9px;
  background: #777777;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 11px;
}
label.form-invalid:after {
  top: 100%;
  right: 10px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #777777;
  border-width: 6px;
}
/*=== 7. Form - Main Message ===*/
.login-form-main-message {
  /*background: #ffffff;*/
  color: #000;
  font-weight: normal;
  /*margin-bottom: 8px;*/
  
  height: 30px;
  padding: 0 20px 0 20px;
  opacity: 1;
  /*
  opacity: 0;
  margin-bottom: 25px;
  */
  transition: all ease-in-out 200ms;

}
.login-form-main-message.show {
  height: auto;
  opacity: 1;
  padding: 10px 20px 10px 17px;
}
.login-form-main-message.success {
  border-left-color: #2ecc71;
}
.login-form-main-message.error {
  border-left-color: #e74c3c;
}

.logo {
  padding: 15px 0;
  font-size: 25px;
  color: #aaaaaa;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /*height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}