/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

/* FULL PAGE BG */

body{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;

  background-image:url("images/indexbg2.jpg");
  background-size:cover;
  background-position:center;
  position:relative;
}

/* DARK OVERLAY */

body::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(30,35,70,0.85);
  z-index:1;
}

/* WRAPPER */

.auth-wrapper{
  position:relative;
  z-index:2;
}

/* CARD */

.login-card{
  width:380px;
  background:white;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
  border-radius:6px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* HEADER */

.card-header{
  background:linear-gradient(135deg,#2daae1,#1e5ba3);
  color:white;
  padding:50px 40px;
  position:relative;
  min-height:260px;
  display:flex;
  align-items:center;
}

.header-content{
  position:relative;
  z-index:2;
}

.card-header h1{
  font-size:28px;
  line-height:1.2;
  margin-bottom:12px;
  font-weight:700;
}

.card-header p{
  font-size:12px;
  opacity:0.85;
}

/* DECOR */

.circle{
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
}

.circle-1{
  width:280px;
  height:280px;
  top:-60px;
  right:-90px;
}

.circle-2{
  width:350px;
  height:350px;
  bottom:-140px;
  left:-110px;
}

/* BODY */

.card-body{
  padding:40px;
  text-align:center;
}

.card-body h2{
  color:#2b3975;
  font-size:15px;
  letter-spacing:2px;
  margin-bottom:28px;
  font-weight:600;
}

/* INPUT */

.input-group{
  background:#29a1d4;
  padding:2px;
  border-radius:4px;
  margin-bottom:20px;
}

.input-group input{
  width:100%;
  border:none;
  outline:none;
  padding:12px;
  background:transparent;
  color:white;
  font-size:14px;
}

.input-group input::placeholder{
  color:white;
  opacity:0.9;
}

/* BUTTON */

.login-btn{
  background:#2d3b7e;
  color:white;
  border:none;
  padding:12px 32px;
  border-radius:4px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  cursor:pointer;
  box-shadow:0 6px 15px rgba(45,59,126,0.35);
  transition:0.2s;
}

.login-btn:hover{
  background:#232e63;
  transform:translateY(-2px);
}

/* STATUS */

.form-status{
  margin-top:18px;
  font-size:13px;
}

.form-status.success{
  color:#16a34a;
}

.form-status.error{
  color:#dc2626;
}