/* Page-specific presentation for register.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%;
  z-index: -1;
}
.a {
  width: 440px;
  height: 440px;
  background: #3148b4;
  opacity: 0.28;
  filter: blur(35px);
  top: -150px;
  left: -100px;
}
.b {
  width: 420px;
  height: 420px;
  background: #11856d;
  opacity: 0.18;
  filter: blur(35px);
  bottom: -180px;
  right: -80px;
}
.card {
  width: min(100%, 500px);
  padding: 38px;
  background: rgba(17, 19, 29, 0.88);
  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: 38px;
  color: #b8ffda;
  font:
    11px 'DM Mono',
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  font-size: 35px;
  letter-spacing: -0.065em;
  margin: 12px 0 8px;
}
p {
  font-size: 14px;
  color: #a9aebc;
  margin: 0 0 25px;
  line-height: 1.6;
}
.signup-offer {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 13px 14px;
  border: 1px solid rgba(184, 255, 218, 0.34);
  border-radius: 11px;
  background: rgba(184, 255, 218, 0.08);
  color: #dcefe5;
  font-size: 12px;
  line-height: 1.45;
}
.signup-offer strong {
  color: #fff;
}
.signup-offer span {
  color: #a9c0b4;
}
.signup-offer b {
  color: #b8ffda;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin: 15px 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;
}
.agree {
  font-size: 12px;
  line-height: 1.5;
  color: #adb1bf;
  margin: 17px 0 23px;
  display: block;
}
.agree input {
  width: auto;
  accent-color: #b8ffda;
}
.agree 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;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .card {
    margin: 16px auto;
    padding: 28px 22px;
    border-radius: 18px;
  }
  h1 {
    font-size: 33px;
  }
  input,
  .submit {
    min-height: 48px;
  }
  input {
    font-size: 16px;
  }
}
