body.body {
  background: #000;
  color: #fff;
  font-family: sans-serif;
  min-height: 100vh;
  margin: 0;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

.box {
  width: 100%;
  max-width: 36rem;
  background: #000;
  border-radius: 1rem;
  padding: 2rem;
}

.logo-block {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  height: 2.25rem;
  margin: 0 auto;
  display: block;
}

.title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.row {
  display: flex;
  gap: 1rem;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: white;
  padding: 0.5rem 0.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

input:focus {
  border-bottom-color: #8b5cf6;
}

.hint {
  font-size: 0.75rem;
  color: #facc15;
  margin-top: 0.25rem;
}

.required {
  color: #ef4444;
}

button {
  width: 100%;
  padding: 0.75rem;
  background-color: #8b5cf6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background-color: #7c3aed;
}

.links {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.links a {
  color: #c084fc;
  text-decoration: none;
  transition: color 0.2s;
}

.links a:hover {
  color: #d8b4fe;
}
