@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

/* login */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

/* contenedor */
.niuhom-login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

/* login caja */
.niuhom-login-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
  max-width: 420px;
  transition: all 0.3s ease;
}

.niuhom-login-box:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* logo y titulo */
.niuhom-login-logo {
  width: 160px;
  margin-bottom: 25px;
}

.niuhom-login-box h2 {
  font-size: 24px;
  color: #562ea1;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* formulario */
.niuhom-login-box form {
  text-align: left;
}

.niuhom-login-box label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.niuhom-login-box input[type="text"],
.niuhom-login-box input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.niuhom-login-box input[type="text"]:focus,
.niuhom-login-box input[type="password"]:focus {
  border-color: #562ea1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(86, 46, 161, 0.1);
}

/* boton de entrar */
.niuhom-login-box input[type="submit"] {
  background-color: #562ea1;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.niuhom-login-box input[type="submit"]:hover {
  background-color: #fff;
  color: #562ea1;
  border: 2px solid #562ea1;
}

/* mensaje de error */
.niuhom-error {
  margin-top: 18px;
  color: #c0392b;
  background: #fdecea;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

/* boton de login */
.niuhom-login-box .btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #562ea1;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin: 20px 2px; /* 👈 menos espacio entre botones */
  border: 2px solid transparent;
}

.niuhom-login-box .btn:hover {
  background-color: #f5f5f5;
  color: #562ea1;
  border-color: #562ea1;
  transform: translateY(-1px);
}

/* boton cerrar sesion */
.niuhom-login-box .logout-btn {
  background-color: #e0e0e0;
  color: #333;
  border: 2px solid transparent;
}

.niuhom-login-box .logout-btn:hover {
  background-color: #f5f5f5;
  color: #562ea1;
  border-color: #562ea1;
  transform: translateY(-1px);
}

/* espaciado dentro */
.niuhom-login-box h2 {
  margin-bottom: 12px;
}

.niuhom-login-box p {
  margin-top: 12px;
  margin-bottom: 22px; /* 👈 también ajustado */
}


@media (max-width: 768px) {
  .niuhom-login-page {
    padding: 30px 15px;
  }

  .niuhom-login-box {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .niuhom-login-logo {
    width: 130px;
    margin-bottom: 20px;
  }

  .niuhom-login-box h2 {
    font-size: 20px;
  }

  .niuhom-login-box input[type="submit"] {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .niuhom-login-box {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .niuhom-login-logo {
    width: 110px;
  }

  .niuhom-login-box h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .niuhom-login-box label {
    font-size: 13px;
  }

  .niuhom-login-box input[type="text"],
  .niuhom-login-box input[type="password"] {
    font-size: 14px;
  }
}

