:root {
  --primary: #2563eb;
  --secondary: #1e293b;
  --light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;

  background: url("/assets/img/bg-login.jpg") center/cover no-repeat;

  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.85),
    rgba(37, 99, 235, 0.55)
  );

  /* backdrop-filter: blur(1px); */
}

.container-fluid {
  position: relative;
  z-index: 2;
}

.auth-wrapper {
  min-height: 100vh;
  padding: env(safe-area-inset-top) 16px env(safe-area-inset-bottom);
}

.left-side {
  color: white;
  padding: 60px;
}

.left-side h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.left-side p {
  margin-top: 20px;
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 500px;
}

.glass-card {
  width: 100%;
  max-width: 440px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 28px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);

  padding: 40px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  margin: auto;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15);

  margin-bottom: 24px;
}

.brand-logo i {
  font-size: 2rem;
  color: white;
}

.login-title {
  color: white;
  font-weight: 700;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.form-label {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  height: 54px;
  border: none;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.92);

  padding: 12px 16px;

  font-size: 15px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.input-group-text {
  border: none;
  border-radius: 0 16px 16px 0;

  background: white;
  cursor: pointer;
}

.btn-login {
  height: 54px;

  border: none;
  border-radius: 16px;

  font-weight: 700;
  font-size: 15px;

  background: linear-gradient(135deg, #3b82f6, #2563eb);

  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.bottom-text {
  color: rgba(255, 255, 255, 0.8);
}

.bottom-text a {
  color: #fff;
  font-weight: 600;
}

.forgot-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 991px) {
  body {
    overflow: auto;
  }

  .left-side {
    display: none;
  }

  .auth-wrapper {
    padding: 24px 14px;
  }

  .glass-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .login-title {
    font-size: 1.7rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .form-control {
    height: 52px;
    font-size: 14px;
  }

  .btn-login {
    height: 52px;
  }
}
