*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#c9e1fc,#7dbcff,#4abfe2,#007BFF,#123dfc);
}

.container{
  width:900px;
  display:flex;
  border-radius:20px;
  overflow:hidden;
  /* Removed blur */
  /* backdrop-filter:blur(18px); */
}

/* LEFT */
.left-panel{
  width:50%;
  position:relative;
}

.left-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('laft.jpeg') center/cover;
}

.overlay{
  position:relative;
  z-index:1;
  height:100%;
  background:rgba(0, 0, 0, 0.178); /* semi-transparent overlay stays */
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;
}

.logo{
  width:140px;
  margin-bottom:20px;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

/* RIGHT */
.right-panel{
  width:50%;
  padding:50px;
  background:linear-gradient(135deg,#c9e1fc,#7dbcff,#4abfe2,#007BFF,#123dfc);;
  color:#575454;      /* default text black */
}

.form-box{
  width:100%;
}

h2{
  color:#000; /* black text */
  text-align:center;
}

.subtitle{
  color:#333; /* dark grey for subtitle */
  text-align:center;
  margin-bottom:25px;
}

.form-group{
  margin-bottom:18px;
  position:relative;
}

label{
  color:#000; /* black label text */
}

input{
  width:100%;
  padding:12px 40px 12px 12px;
  border:none;
  border-radius:10px;
  background:rgba(0,0,0,0.05); /* light grey input background */
  color:#000; /* black input text */
}

.toggle{
  position:absolute;
  right:12px;
  top:36px;
  cursor:pointer;
  transition:0.3s;
  color:#000; /* toggle icon black */
}

.toggle.active{
  transform:rotate(180deg);
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:linear-gradient(90deg,#007BFF,#4A00E0);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.switch-text,
.forgot-link{
  text-align:right;
  color:#000; /* black links */
  margin-top:10px;
  cursor:pointer;
}

.hidden{
  display:none;
}
/* CLICKABLE TEXT IMPROVEMENTS (NO UI CHANGE) */
.switch-text span{
  font-weight:600;
  cursor:pointer;
}

.switch-text span:hover,
.forgot-link:hover{
  text-decoration:underline;
}
