*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  height:100vh;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  background:#f5f5f5;
}

/* Background image with blur overlay */
.bg{
  position:fixed;
  inset:0;
  background:url("../assets/loginPageImage.jpg") center/cover no-repeat;
  filter:brightness(1) ;
  z-index:-1;
}

/* Card */
.card{
  width:330px;
  margin-right:10%;
  background:white;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.2);
  overflow:hidden;
}

/* Top logo */
.logo-section{
  padding:18px;
  text-align:center;
  border-bottom:1px solid #ddd;
}
.logo-section img{
  height:60px;
}

/* Form area */
.form-section{
  padding:25px;
}

.form-section h2{
  text-align:center;
  margin-bottom:20px;
  color:#666;
}

/* Inputs */
.input-group{
  display:flex;
  align-items:center;
  background:#eee;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
}

.input-group .icon{
  margin-right:10px;
  color:#777;
}

.input-group input{
  border:none;
  outline:none;
  background:transparent;
  width:100%;
  font-size:14px;
}

/* Forgot */
.forgot{
  display:block;
  margin-bottom:18px;
  font-size:13px;
  color:#7c6bd3;
  text-decoration:none;
}
.forgot:hover{
  text-decoration:underline;
}

/* Buttons */
.btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:25px;
  margin-bottom:12px;
  font-size:15px;
  cursor:pointer;
  transition:0.2s;
}

.primary{
  background:#1eb6b6;
  color:white;
}
.secondary{
  background:#1eb6b6;
  color:white;
}

.btn:hover{
  transform:scale(1.03);
  box-shadow:0 3px 10px rgba(0,0,0,0.2);
}