body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url("../resource/fondo.png"); /* Imagen de fondo */
  background-size: cover;             /* Ajusta la imagen al tamaño de la pantalla */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: rgba(255, 255, 255, 0.85); /* Fondo blanco con opacidad */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.login-form .main-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff4e50;
}

.login-form h2 {
  margin-top: 10px;
  margin-bottom: 25px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.login-form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #ff4e50;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #e84346;
}
