

.wrap-login {
  width: 500px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.1);
}



.login-form{
    width: 100%;
    position: relative;
    padding: 178px 55px 55px 55px;
    box-sizing: border-box;
}

.login-form-title{
    font-size: 30px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #57b846;
    padding-top: 50px;
    padding-bottom: 39px;
}

.welcome_hermes_img{

}

.wrap-input {
  width: 100%;
  background-color: #fff;
  border-radius: 27px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}



.input {
  font-size: 15px;
  color: #1b3815;
  line-height: 1.2;

  position: relative;
  display: block;
  width: -webkit-fill-available;
  height: 55px;
  background: #ebebeb;
  border-radius: 27px;
  padding: 0 35px;
}

.focus-input {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 31px;
  background-color: #ebebeb;
  pointer-events: none;
  
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input:focus + .focus-input {
  width: calc(100% + 20px);
}

.login-form p{
 color: #757575;
 padding-bottom: 18px;
}

.remember-me input {
    position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 20px;
}

.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background-color: #57b846;
    border-radius: 25px;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}

input {
    outline: none;
    border: none;
    overflow: visible;
}

.validate-input {
    position: relative;
}

.login-form-btn:hover {
    background-color: #306f24
}

.login-error {
  color: #f00;
}

.login-error li{
  list-style-type:none;
}

.login-error li:before {
    content: "!";
    padding-right: 10px; /* Расстояние от маркера до текста */
   }





iframe {
  display:none;
  width:100%;
  border:none;
  height: 100%;
  min-height: 100%;
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  background-color: #fff;
  z-index:9999;
}