/* Page-specific presentation for login.html. Keep behavior in assets/js. */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #07080f;
  color: #f8f9ff;
  font-family: Manrope, Arial, sans-serif;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(1px);
  z-index: -1;
}
.a {
  width: 420px;
  height: 420px;
  background: #273ca0;
  opacity: 0.32;
  top: -130px;
  right: -70px;
}
.b {
  width: 360px;
  height: 360px;
  background: #0c8b78;
  opacity: 0.22;
  bottom: -130px;
  left: -90px;
}
.card {
  width: min(100%, 470px);
  padding: 38px;
  background: rgba(17, 19, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  box-shadow: 0 30px 90px #0007;
}
.brand {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.06em;
  display: flex;
  gap: 9px;
  align-items: center;
}
.mark {
  display: grid;
  place-items: center;
  background: #b8ffda;
  color: #081224;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 14px;
}
.eyebrow {
  margin-top: 45px;
  color: #b8ffda;
  font:
    11px 'DM Mono',
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  font-size: 37px;
  letter-spacing: -0.065em;
  margin: 12px 0 8px;
}
p {
  font-size: 14px;
  color: #a9aebc;
  margin: 0 0 28px;
  line-height: 1.6;
}
label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin: 17px 0 8px;
}
input {
  width: 100%;
  border: 1px solid #303443;
  background: #0b0d15;
  color: white;
  border-radius: 10px;
  padding: 14px;
  font: 14px Manrope;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 68px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 6px;
  padding: 6px 7px;
  background: transparent;
  color: #b8ffda;
  font: 800 11px 'DM Mono', monospace;
  cursor: pointer;
}
.password-toggle:hover {
  background: rgba(184, 255, 218, 0.1);
}
.password-toggle:focus-visible {
  outline: 2px solid #69aaff;
  outline-offset: 2px;
}
input:focus {
  outline: 2px solid #69aaff;
  border-color: transparent;
}
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 25px;
  font-size: 12px;
}
.row label {
  margin: 0;
  font-weight: 500;
  color: #b5b9c4;
}
.row input {
  width: auto;
  accent-color: #b8ffda;
}
.row a,
a {
  color: #b8ffda;
}
.submit {
  background: #b8ffda;
  color: #082018;
  border: 0;
  border-radius: 10px;
  width: 100%;
  padding: 15px;
  font: 800 14px Manrope;
  cursor: pointer;
}
.new {
  text-align: center;
  font-size: 13px;
  color: #a9aebc;
  margin: 24px 0 0;
}
.new a {
  font-weight: 800;
  text-decoration: none;
}
.status {
  display: none;
  margin: 16px 0 0;
  color: #ffb4b4;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  body {
    display: block;
    padding: 14px;
  }
  .card {
    margin: 16px auto;
    padding: 28px 22px;
    border-radius: 18px;
  }
  .eyebrow {
    margin-top: 34px;
  }
  h1 {
    font-size: 34px;
  }
  input,
  .submit {
    min-height: 48px;
  }
  input {
    font-size: 16px;
  }
  .row {
    align-items: flex-start;
    gap: 12px;
  }
}
