/* Base */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Background */
.login-bg {
  min-height: 100vh;
  background: #f1f5f9; /* soft, non-glaring */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper */
.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 1rem;
  text-align: center;
}

/* Card */
.login-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);
  text-align: left;
}

/* Titles */
.login-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
  text-align: center;
}

.login-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
  text-align: center;
}

/* Labels */
.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
}

/* Inputs */
.input-group-text {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #64748b;
}

.form-control {
  border-color: #e2e8f0;
  font-size: 0.95rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #6366f1;
}

/* Toggle password */
.toggle-password {
  background: #ffffff;
  border-color: #e2e8f0;
  cursor: pointer;
}

/* Button */
.btn-login {
  background: #6366f1;
  color: #ffffff;
  font-weight: 500;
  padding: 0.6rem;
  border-radius: 6px;
}

.btn-login:hover {
  background: #4f46e5;
}

/* Links */
.forgot-link {
  font-size: 0.85rem;
  color: #6366f1;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer-text {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1.5rem;
}

.input-group-text,
.form-control {
  border-color: #dbe3ee;
}