:root {
  --navy: #0d2b45;
  --teal: #149fb0;
  --text: #0d2b45;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  background:
    linear-gradient(120deg, rgba(13, 43, 69, 0.68), rgba(20, 159, 176, 0.5)),
    url("/static/img/phoenix-header-wallpaper.jpg") center center / cover no-repeat fixed;
}

.login-shell {
  width: min(460px, calc(100% - 32px));
}

.login-card {
  width: 100%;
  padding: 28px;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px) saturate(130%);
}

.login-title {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 650;
}

.login-subtitle {
  margin: 0 0 18px;
  color: #325471;
  font-size: 0.95rem;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #325471;
}

.login-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 0.5px solid rgba(13, 43, 69, 0.18);
  font-size: 1rem;
}

.login-input:focus {
  outline: 1px solid rgba(20, 159, 176, 0.45);
}

.login-button {
  margin-top: 4px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--navy) 60%, var(--teal) 100%);
  cursor: pointer;
}

.login-feedback {
  min-height: 1.2rem;
  margin: 0;
  color: #8f1d1d;
  font-size: 0.9rem;
}

.login-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.login-footer a {
  color: #eaf3fb;
  font-size: 12px;
  text-decoration: none;
  opacity: 0.92;
}
