/* Estilos específicos para registro */
* { box-sizing: border-box; }
body {
  font-family: Verdana, sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 100%;
  max-width: 420px;
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #d94f4f;
}
form input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #d94f4f;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #a83434;
}
p {
  text-align: center;
  margin-top: 15px;
}
a {
  color: #d94f4f;
  text-decoration: none;
  font-weight: bold;
}
.msg.error { background: #ffecec; color: #b00020; padding: 10px; border-radius: 6px; }
.msg.success { background: #e6ffed; color: #076b2e; padding: 10px; border-radius: 6px; }
