/* ── PAGE BANNER ── */
.page-banner { width: 100%; height: 140px; background: linear-gradient(135deg, #085041 0%, #1d9e75 60%, #5dcaa5 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.banner-title { font-size: 22px; font-weight: 500; color: #fff; letter-spacing: 0.08em; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }

/* ── LOGIN FORM ── */
.login-section { min-height: 420px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.login-card { width: 100%; max-width: 420px; }
.login-title { font-size: 20px; font-weight: 500; color: #1a1a1a; text-align: center; margin-bottom: 0.4rem; }
.login-sub { font-size: 13px; color: #aaa; text-align: center; margin-bottom: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-label { font-size: 12px; color: #555; margin-bottom: 6px; display: block; }
.input-wrap { position: relative; }
.input-wrap i.prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; color: #666; }
.form-input { width: 100%; padding: 12px 16px 12px 42px; border-radius: 10px; border: 1px solid #d0d0d0; background: #f7f7f7; font-size: 14px; color: #1a1a1a; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: #555; background: #fff; }
.form-input::placeholder { color: #bbb; }
.eye-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #999; font-size: 16px; padding: 0; display: flex; }
.remember-row { display: flex; align-items: center; gap: 8px; margin: 0.25rem 0 1.25rem; }
.remember-checkbox { width: 16px; height: 16px; accent-color: #b8912a; cursor: pointer; }
.remember-label { font-size: 13px; color: #555; cursor: pointer; }
.btn-submit { width: 100%; padding: 13px; border-radius: 10px; background: #b8912a; color: #fff; font-size: 15px; font-weight: 500; border: none; cursor: pointer; letter-spacing: 0.06em; }

@media (max-width: 768px) {
  .page-banner { height: 110px; }
  .banner-title { font-size: 18px; }
  .login-section { padding: 2rem 1.25rem; min-height: unset; }
  .login-title { font-size: 18px; }
}

/* Login alert */
.login-card .alert {
  position: relative;
  width: 100%;
  margin: 0 0 24px 0;
  padding: 14px 44px 14px 18px;
  border-radius: 12px;
  border: 1px solid #f1c5c5;
  background: #fff3f3;
  color: #9f1d1d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  box-sizing: border-box;
}

.login-card .alert h1,
.login-card .alert h2,
.login-card .alert h3,
.login-card .alert h4,
.login-card .alert strong {
  margin: 0 0 4px 0;
  color: #9f1d1d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.login-card .alert p {
  margin: 0;
}

.login-card .alert .close,
.login-card .alert button.close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #9f1d1d;
  font-size: 22px;
  line-height: 26px;
  cursor: pointer;
  opacity: 0.8;
}

.login-card .alert .close:hover,
.login-card .alert button.close:hover {
  opacity: 1;
  background: rgba(159, 29, 29, 0.08);
}
