/* === LOGIN.CSS === */
body {
  background-color: #f7f7f7;
  font-family: 'Segoe UI', sans-serif;
}

.login-container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  padding: 30px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
}

.login-container h2 {
  margin-bottom: 25px;
  color: #333;
}

.formulario-login {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.btn-login {
  margin-top: 10px;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #0056b3;
}

.mensaje-error {
  background-color: #ffe0e0;
  color: #b71c1c;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.acciones-login {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.acciones-login a {
  color: #007bff;
  text-decoration: none;
}

.acciones-login a:hover {
  text-decoration: underline;
}

.mensaje-exito {
  background-color: #e0f7e9;
  color: #1b5e20;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}

