* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #090b0f;
  color: #f4f4f4;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 440px;
  padding: 28px;
  border: 1px solid #2b3038;
  border-radius: 18px;
  background: #11151c;
  box-shadow: 0 20px 80px rgba(0,0,0,.35);
}

.eyebrow {
  margin: 0 0 10px;
  color: #8cff9b;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
}

.intro, .small {
  color: #b9c0cc;
  line-height: 1.5;
}

.form {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

label {
  font-size: 13px;
  color: #d6dbe4;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 14px 13px;
  border: 1px solid #353c47;
  border-radius: 10px;
  background: #080a0e;
  color: #fff;
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: #8cff9b;
}

.primary {
    width: 100%;
    margin-top: 12px;
    padding: 14px 18px;
    border: 0;
    border-radius: 10px;
    background: #00FF66;
    color: #071008;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.primary:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.status {
  min-height: 22px;
  margin: 16px 0 0;
  color: #ffdf7e;
  line-height: 1.4;
}

.success {
  text-align: center;
  border-color: #8cff9b;
}

.hidden { display: none; }
