.login-screen {
  --font: 'Inter','Sarabun',sans-serif;
  min-height: 100vh; width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: #0d1526 url('../../../Images/bg-home.jpeg') left center / cover no-repeat;
  overflow: hidden; padding: 24px;
  font-family: 'Inter', var(--font);
}
.login-overlay { position: absolute; inset: 0; background: rgba(10,15,30,.22); }
.login-card {
  position: relative; width: 440px; max-width: 100%;
  background: rgba(255,255,255,.98); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(6,10,24,.35), 0 2px 8px rgba(6,10,24,.08);
  overflow: hidden;
}
.login-head { padding: 44px 40px 8px; text-align: center; }
.login-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 14px; }
.login-brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { font-family: 'Inter', var(--font); font-size: 26px; font-weight: 800; letter-spacing: -.01em; color: #131c33; }
.brand-text span { color: #0d9488; }
.login-sub {
  font-family: var(--font); font-size: 14.5px; font-weight: 500; color: #6b7280;
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
.login-body { padding: 18px 40px 32px; display: flex; flex-direction: column; gap: 16px; }
.login-body .form-label { font-family: var(--font); font-size: 14px; font-weight: 700; color: #1e2433; margin-bottom: 7px; display: block; }
.login-input-wrap { position: relative; display: flex; align-items: center; }
.login-input-wrap svg:first-child { position: absolute; left: 14px; color: #98a1b3; pointer-events: none; }
.login-body .form-control { border-color: #e5e8f0; border-radius: 10px; padding: 11px 14px 11px 40px; font-size: 15px; width: 100%; }
.login-body .form-control:focus { border-color: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,.12); }
#password { padding-right: 40px; }
.login-eye-btn {
  position: absolute; right: 4px; border: 0; background: none; color: #98a1b3;
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.login-eye-btn:hover { color: #5c6478; background: #f1f3f8; }
.login-eye-btn:active { background: #e6e9f1; }
.login-remember { display: flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 13.5px; color: #4a5164; }
.login-remember input { cursor: pointer; }
.login-row { display: flex; align-items: center; justify-content: space-between; margin-top: -8px; }
.login-btn {
  margin-top: 4px; padding: 13px; border-radius: 10px; background: #0d9488;
  color: #fff; font-family: var(--font); font-weight: 700; font-size: 16px; letter-spacing: .01em; border: 0;
  transition: background .15s ease;
}
.login-btn:hover { color: #fff; background: #0b7d72; }
.login-btn:disabled { opacity: .7; }
.login-secure {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px;
  font-family: var(--font); font-size: 13px; color: #8890a3;
}
.login-secure::before, .login-secure::after { content: ''; flex: 1; height: 1px; background: #e5e8f0; }
.login-secure span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.login-copy { text-align: center; font-family: var(--font); font-size: 12.5px; color: #a8afc0; margin-top: 10px; }
@media (max-width: 560px) {
  .login-head { padding: 34px 26px 6px; }
  .login-body { padding: 16px 26px 26px; }
}
