body.login form {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 26px 24px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* 👈 sombra sutil */
  transition: box-shadow 0.3s ease;
}

body.login form:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); /* 👈 más intensa al hacer hover */
}


body.login h1 a {
  background-image: url(''); /* podés dejarlo vacío o poner tu logo */
  display: none; /* ocultar si no querés usar el logo WP */
}

/* Campos de input */
body.login form {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 26px 24px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

body.login label {
  font-weight: 600;
  color: #333;
}

body.login input[type="text"],
body.login input[type="password"] {
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

/* Botón de login */
body.login input[type="submit"] {
  background: #00BFFF;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

body.login input[type="submit"]:hover {
  background: #0094cc;
}

/* Enlaces */
body.login #nav a,
body.login #backtoblog a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: 500;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
  color: #007bb5;
}

/* TRIÁNGULO CELESTE - esquina superior izquierda */
.triangle-top-left {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 0;
  height: 0;
  border-left: 180px solid #00BFFF;
  border-bottom: 180px solid transparent;
  transition: transform 0.3s ease;
  z-index: 1;
}

.triangle-top-left:hover {
  transform: translate(30px, 30px);
}

/* TRIÁNGULO ROJO - esquina inferior derecha */
.triangle-bottom-right {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 0;
  height: 0;
  border-right: 180px solid #FF0000;
  border-top: 180px solid transparent;
  transition: transform 0.3s ease;
  z-index: 1;
}

.triangle-bottom-right:hover {
  transform: translate(-30px, -30px);
}

#language-switcher {
  display: none;
}

@media (max-width: 768px) {
  .triangle-top-left {
    display: none;
  }
  .triangle-bottom-right {
      display: none;
   }
}