/* Registro.css */
body {
  background-color: #121212;
  color: #ddd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.contenedor-formulario {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.formulario-registro {
  background-color: #1f1f1f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px #4caf50;
  text-align: center;
}

.titulo {
  margin-bottom: 20px;
  font-size: 24px;
  color: #4caf50;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: #2c2c2c;
  color: #ddd;
  font-size: 16px;
}

input::placeholder {
  color: #aaa;
}

button[type="submit"] {
  width: 100%;
  background-color: #4caf50;
  border: none;
  padding: 12px;
  border-radius: 5px;
  color: #121212;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #43a047;
}

.enlace-login {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.enlace-login a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
}

.enlace-login a:hover {
  text-decoration: underline;
}

.mensaje {
  background-color: #333;
  color: #ff5252;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}
