.register{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.auth-card{
  width:100%;
  max-width:500px;
  padding:60px;
  border-radius:25px;
  background:black;
  backdrop-filter:blur(20px);
  border:1px solid rgba(142,45,226,0.3);
  box-shadow:0 0 60px rgba(142,45,226,0.25);
  color:white;
}

.auth-card h2{
  text-align:center;
  margin-bottom:35px;
  font-weight:600;
}

.input-group{
  margin-bottom:20px;
}

.input-group label{
  font-size:13px;
  opacity:.8;
}

.input-group input{
  width:100%;
  padding:13px;
  margin-top:6px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:white;
  outline:none;
  transition:0.3s;
}

.input-group input:focus{
  border:1px solid #8e2de2;
  box-shadow:0 0 12px #8e2de2;
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#8e2de2,#ff008c);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #8e2de2;
}

.footer{
  margin-top:25px;
  text-align:center;
  font-size:14px;
}

.footer a{
  color:#ff4dd2;
  text-decoration:none;
}

.plan-note {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

/* Password field with eye icon */
.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px; /* space for eye icon */
}

.password-wrapper i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.password-wrapper i:hover {
  color: #ff4dd2;
}

@media (max-width:900px){

  .auth-card{
    padding:40px 30px;
  }
}