/* ============================================================
   manager_web/css/login.css
   ============================================================ */

body.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(79,70,229,.12) 0%, transparent 70%),
    #0f172a;
}

.login-wrap {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}

.login-brand {
  text-align: center;
  margin-bottom: 28px;
}
.login-brand img { width: 48px; height: 48px; margin-bottom: 10px; }
.login-brand-name { font-size: 20px; font-weight: 700; color: #f1f5f9; }
.login-brand-sub  { font-size: 12px; color: #64748b; margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.login-title {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 24px;
}

.form-label   { color: #94a3b8; font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #334155;
  border-radius: 8px;
  font-size: 14px;
  color: #f1f5f9;
  background: #0f172a;
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,.25);
}
.form-control::placeholder { color: #475569; }

.btn-login {
  width: 100%;
  padding: 11px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-top: 8px;
}
.btn-login:hover   { background: #3730a3; }
.btn-login:active  { transform: scale(.98); }
.btn-login:disabled { opacity: .6; cursor: not-allowed; }

.alert-login {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid transparent;
}
.alert-login.error   { background: rgba(239,68,68,.15);  border-color: rgba(239,68,68,.3);  color: #fca5a5; }
.alert-login.success { background: rgba(16,185,129,.15); border-color: rgba(16,185,129,.3); color: #6ee7b7; }

.login-footer {
  text-align: center;
  margin-top: 20px;
  color: #475569;
  font-size: 12px;
}
