/* Reset básico para mejorar la compatibilidad entre navegadores */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Fondo general negro */
body {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Contenedor principal del formulario */
.login-page {
  width: 100%;
  max-width: 360px;
  padding: 20px;
}

.form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.5);
}

/* Imagen del logo */
.form img {
  max-width: 100px;
}

/* Estilos de los campos de entrada */
input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid #FFA500;
  border-radius: 5px;
  background: transparent;
  color: white;
  font-size: 16px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Botón de inicio de sesión */
button {
  width: 100%;
  background: linear-gradient(45deg, #FFA500, #00AEEF);
  border: none;
  padding: 12px;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(45deg, #00AEEF, #FFA500);
}

/* Mensaje de registro */
.message {
  margin-top: 15px;
  font-size: 14px;
  color: white;
}

.message a {
  color: #FFA500;
  text-decoration: none;
  font-weight: bold;
}

.message a:hover {
  color: #00AEEF;
}
