
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,html {
  height: 100%; background: #eee;

}

input {
  outline: none;
  border: none;
}

textarea:focus,input:focus {
  border-color: transparent!important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #999;
}

input:-moz-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}


button {
  outline: none!important;
  border: none;
  background: 0 0;
}

button:hover {
  cursor: pointer;
}
.container-login {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px; position: relative;
  background: url(images/aol-leaf.webp); position: relative;
    /* background: #57b846;
    background: -webkit-linear-gradient(-135deg,#57b846,#4158d0);
    background: -o-linear-gradient(-135deg,#c850c0,#4158d0);
    background: -moz-linear-gradient(-135deg,#c850c0,#4158d0);
    background: linear-gradient(-135deg,#57b846,#4158d0);*/
}
.container-login:before {
  position: absolute;
    content: "";
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: -1;
    top: 0;
    left: 0;

}


.wrap-login {
  max-width: 460px; width:100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 50px 50px 50px; box-shadow: 0px 0px 10px #333;
}
.login-form {
  width: 100%;
}

.login-form-title {
    font-size: 24px;
  color: #333;
  line-height: 20px;
  text-align: center;
  width: 100%;
  display: block;
  padding-bottom: 30px !important;
}

.wrap-input {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input {
   font-size: 15px;
  line-height: 1.5;
  color: #666;
  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 30px;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0 0 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0 0 70px 25px;
    opacity: 0;
  }
}


.login-form-btn {
   font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px; margin-top: 30px;
  border-radius: 25px;
  background: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

.login-form-btn:hover {
  background: #333;
}

@media(max-width:992px) {
  .wrap-login {
    padding: 50px;
  }

  .login-pic {
    width: 35%;
  }

  .login-form {
    width: 50%;
  }
}

@media(max-width:768px) {
  .wrap-login {
    padding: 40px;
  }
.login-form {
    width: 100%;
  }
}

@media(max-width:576px) {
  .wrap-login {
    padding: 30px;
  }
}





/*-----dashboard-------*/

