*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}

body{
  background:#f4f6f9;
}

/* MAIN */
.login-container{
  display:flex;
  min-height:100vh;
}

/* LEFT SIDE */
.login-left{
  flex:1;
  background:url('../../assets/img/Banner/Banner 2.jpeg') no-repeat center/cover;
  position:relative;
}

.login-left .overlay{
  background:rgba(0, 184, 148, 0.85);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px;
  color:#fff;
}

.login-left h2{
  font-size:36px;
  margin-bottom:15px;
}

.login-left p{
  font-size:15px;
  max-width:400px;
}

/* RIGHT SIDE */
.login-right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

/* LOGIN BOX */
.login-box{
  width:100%;
  max-width:380px;
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:20px;
}

.logo img{
  height:200px;
}

.logo h3{
  color:#0B3C5D;
}

/* TITLE */
.login-box h4{
  text-align:center;
  margin-bottom:20px;
  font-weight:600;
}

/* INPUT */
.input-group{
  display:flex;
  align-items:center;
  background:#f1f1f1;
  border-radius:10px;
  margin-bottom:15px;
  padding:10px;
}

.input-group i{
  color:#00B894;
  margin-right:10px;
}

.input-group input{
  border:none;
  outline:none;
  background:transparent;
  width:100%;
}

/* OPTIONS */
.login-options{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  margin-bottom:20px;
}

.login-options a{
  text-decoration:none;
  color:#00B894;
}

/* BUTTON */
.login-btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:30px;
  background:#00B894;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.login-btn i{
  margin-right:6px;
}

.login-btn:hover{
  background:#019875;
}

/* SIGNUP */
.signup-text{
  text-align:center;
  margin-top:15px;
  font-size:14px;
}

.signup-text a{
  color:#FF6B6B;
  text-decoration:none;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .login-container{
    flex-direction:column;
  }

  .login-left{
    height:200px;
  }

  .login-left .overlay{
    padding:20px;
    text-align:center;
  }
}
