
/* ================= RESET ================= */
html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

/* ================= SOFT BACKGROUND ================= */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(125,95,255,.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,190,255,.30), transparent 45%),
    linear-gradient(135deg, #f4f6fb 0%, #eef1f8 100%);
}

/* floating blobs */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #7d5fff;
  top: -120px;
  left: -120px;
}

.shape-2 {
  width: 280px;
  height: 280px;
  background: #00cfff;
  bottom: -120px;
  right: -120px;
}

/* ================= CONTENT LAYER ================= */
.container-scroller,
.page-body-wrapper,
.full-page-wrapper,
.content-wrapper {
  position: relative;
  z-index: 10;
  height: 100vh;
}

/* ================= LOGIN CARD ================= */
.auth-form-light {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  padding: 36px 32px !important;
}

/* ================= LOGO ================= */
.brand-logo {
  text-align: center;
  margin-bottom: 15px;
}

.brand-logo img {
  max-width: 170px;
}

/* ================= TEXT ================= */
.signin-text {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin-bottom: 22px;
}

/* ================= INPUTS ================= */
.form-group {
  margin-bottom: 16px;
}

.form-control {
  height: 52px;
  font-size: 15px;
  background: #f1f4fb;
  border: 1px solid #dce2f0;
  border-radius: 10px;
  padding-left: 16px;
}

.form-control::placeholder {
  color: #8a8fa7;
}

.form-control:focus {
  background: #ffffff;
  border-color: #7d5fff;
  box-shadow: 0 0 0 3px rgba(125,95,255,.15);
}

/* ================= PASSWORD ================= */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

/* ================= BUTTON ================= */
.auth-form-btn {
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7d5fff, #5f27cd);
  border: none;
  font-size: 16px;
  letter-spacing: .5px;
}

.auth-form-btn:hover {
  background: linear-gradient(135deg, #6c4bff, #4e1fbf);
}

/* ================= ALERT ================= */
.alert {
  display: none;
  text-align: center;
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .auth-form-light {
    padding: 28px 22px !important;
  }
}