body {
  background-color: #324132;   /* color de fondo 324132 */
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-card {
  background: #9461a8;         /* card 9461a8 */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 350px;
}

.titulo {
  text-align: center;
  margin-bottom: 40px;
  color: #fcfcfc;                 /* texto oscuro para contraste */
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fcfcfc;
}

form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #000000;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 0.75rem;
  background-color: #218838;   /* boton sin seleccionar */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #4f1874;   /* pasar cursor por arriba */
}

nav.links {
  margin-top: 1rem;
  text-align: center;
}

nav.links a {
  color: #ffffff;              /* enlaces verdes */
  text-decoration: none;
}

nav.links a:hover {
  text-decoration: underline;
}