main {
  text-align: center;
}

.register-form {
  max-width: 340px;
  margin: 30px auto;
  background: rgba(40,32,24,0.97);
  border: 3px solid #bfa76a;
  border-radius: 16px;
  box-shadow: 0 3px 18px #1a140d;
  padding: 28px 22px 22px 22px;
  font-family: 'Merriweather', 'Georgia', serif;
  color: #e8dac3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.register-form label {
  color: #d3b676;
  font-weight: 500;
  font-size: 1.08em;
  margin-bottom: 3px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.register-form input[type="text"],
.register-form input[type="password"] {
  font-size: 1em;
  padding: 7px 12px;
  border-radius: 7px;
  border: 2px solid #bfa76a;
  background: #433825;
  color: #e8dac3;
  font-family: 'Merriweather', 'Georgia', serif;
}
.register-form button[type="submit"] {
  background: linear-gradient(90deg,#6c5432 70%,#bfa76a 100%);
  color: #f4f1ed;
  font-weight: bold;
  border: 2px solid #bfa76a;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 1.08em;
  cursor: pointer;
  margin-top: 15px;
  font-family: 'Merriweather', 'Georgia', serif;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 8px #1a140d;
}
.register-form button[type="submit"]:hover {
  background: linear-gradient(90deg,#bfa76a 70%,#6c5432 100%);
  color: #2a251f;
}
.register-error {
  color: #e74c3c;
  font-weight: bold;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.09em;
  background: #2a251f;
  border-radius: 9px;
  padding: 7px 0;
  box-shadow: 0 1px 4px #1a140d;
}
.register-login-link {
  text-align: center;
  margin-top: 18px;
}
.register-login-link a {
  color: #bfa76a;
  text-decoration: none;
  font-size: 1.08em;
  font-family: 'MedievalSharp', 'Merriweather', serif;
  font-weight: bold;
  transition: color .2s;
}
.register-login-link a:hover {
  color: #c7ad7c;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .login-form { max-width: 98vw; padding: 13px; }
}