/* footer css start */
.login-header {
    background: #ffffff;
    text-align: center;
    padding: 35px 0px 10px;
}

.login-footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 15px 0px;
    border-top: 5px solid #C28209;
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 12px;
}
/* footer css end */





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body{
  background: #ECECEC;
  overflow: hidden;
}

.container{
  max-width: 440px;
  padding: 0 20px;
  margin: 45px auto;
}
.wrapper{
  width: 100%;
  /* background: #fff; */
  border-radius: 5px;
  /* box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1); */
}
.wrapper .title{
    height: 90px;
    background: #ececec;
    border-radius: 5px 5px 0 0;
    color: #000000;
    font-size: 35px;
    font-weight: 300;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    justify-content: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wrapper form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .login-field{
    padding: 5px 40px;
}

.wrapper form .row input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 30px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  font-size: 12px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 30px;
  height: 75%;
  color: #F5CF17;
  font-size: 13px;
  background: #ffffff;
  /* border: 1px solid #16a085; */
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form .button input{
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding-left: 0px;
  background: #F5CF17;
  border: #F5CF17;
  cursor: pointer;
  margin-top: 60px;
  height: 40px;
}

.error{
  font-size: 13px;
  color: #cc0000;
  padding: 3px 0px;
}