* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0d0f14;
  color: #e6e9ef;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap { width: 100%; max-width: 420px; padding: 24px; }
.card {
  background: #161922;
  border: 1px solid #232734;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.logo {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #4f7cff, #8a5cff);
  border-radius: 9px;
  font-size: 18px;
}
.brand span { font-weight: 600; letter-spacing: 2px; font-size: 15px; }
h1 { font-size: 21px; margin-bottom: 6px; font-weight: 600; }
.sub { color: #8b93a7; font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  color: #8b93a7;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.field input {
  width: 100%;
  padding: 11px 13px;
  background: #0d0f14;
  border: 1px solid #2a2f3d;
  border-radius: 9px;
  color: #e6e9ef;
  font-size: 14px;
  outline: none;
}
.field input:focus { border-color: #4f7cff; }
button {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  background: linear-gradient(135deg, #4f7cff, #8a5cff);
  border: none;
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
button:hover { opacity: .92; }
.status {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #232734;
  font-size: 12px;
  color: #5a8c6a;
}
.foot {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: #555c6e;
}
