/* ===== Reset ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ===== Body ===== */

body{
  font-family:'Poppins', sans-serif;
  background:#f5f6f8;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

/* ===== Login Card ===== */

.login-card{
  width:100%;
  max-width:460px;
  background:white;
  border-radius:28px;
  padding:45px 35px;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

/* ===== Logo ===== */

.logo{
  text-align:center;
  margin-bottom:30px;
}

.logo h2{
  color:#005EA6;
  font-size:34px;
  font-weight:700;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.logo i{
  font-size:36px;
}

/* ===== Welcome Text ===== */

.welcome-text{
  text-align:center;
  margin-bottom:35px;
}

.welcome-text h1{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin-bottom:10px;
}

.welcome-text p{
  color:#6b7280;
  font-size:16px;
}

/* ===== Labels ===== */

.form-label{
  font-weight:600;
  margin-bottom:10px;
  color:#111827;
}

/* ===== Input Group ===== */

.input-group{
  position:relative;
}

/* ===== Inputs ===== */

.form-control{
  height:56px;
  border:none;
  background:#f3f4f6;
  box-shadow:none !important;
  font-size:15px;
  padding-left:12px;
}

/* ===== Input Icons ===== */

.input-group-text{
  border:none;
  background:#f3f4f6;
  color:#6b7280;
  padding:0 18px;
  font-size:18px;
}

/* ===== Password Toggle ===== */

.toggle-password{
  position:absolute;
  top:50%;
  right:15px;
  transform:translateY(-50%);
  border:none;
  background:transparent;
  color:#6b7280;
  z-index:10;
  font-size:20px;
  cursor:pointer;
}

/* ===== Forgot Password ===== */

.forgot-password{
  text-align:right;
  margin-top:10px;
  margin-bottom:25px;
}

.forgot-password a{
  text-decoration:none;
  color:#005EA6;
  font-size:14px;
  font-weight:500;
}

/* ===== Login Button ===== */

.login-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:16px;
  background:#005EA6;
  color:white;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

.login-btn:hover{
  background:#004b86;
}

/* ===== Register Text ===== */

.register-text{
  text-align:center;
  margin-top:30px;
  font-size:15px;
  color:#6b7280;
}

.register-text a{
  text-decoration:none;
  color:#005EA6;
  font-weight:600;
}

/* ===== Tablet ===== */

@media(max-width:768px){

  .login-card{
    padding:40px 28px;
  }

  .welcome-text h1{
    font-size:36px;
  }

}

/* ===== Mobile ===== */

@media(max-width:576px){

  .login-card{
    padding:35px 22px;
    border-radius:22px;
  }

  .logo h2{
    font-size:28px;
  }

  .logo i{
    font-size:30px;
  }

  .welcome-text h1{
    font-size:30px;
  }

  .welcome-text p{
    font-size:15px;
  }

  .form-control{
    height:52px;
    font-size:14px;
  }

  .login-btn{
    height:52px;
    font-size:16px;
  }

}

  