/* Fondo con imagen */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('fondo.jpg'); /* Ajusta la ruta si es necesario */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bloque centrado */
.container {
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: white;
}

/* Logo al doble de tamaño */
.logo {
  max-width: 300px; /* antes 150px */
  height: auto;
  margin-bottom: 20px;
}

/* Texto */
h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

/* Campo de texto reducido a la mitad */
input[type="text"] {
  width: 50%; /* antes 100% */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Botón reducido y con nuevo estilo */
button {
  width: 50%; /* antes 100% */
  padding: 10px;
  background-color: white;
  color: #e63946;
  border: 2px solid #e63946;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

button:hover {
  background-color: #f8dcdc;
}

/* Mensaje de error */
.error {
  color: #ffcccc;
  margin-top: 10px;
}
