/* Fondo glamuroso con contraste limpio */
body.login {
  background: #f5f5f5; /* gris claro casi blanco */
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Logo destacado */
body.login #login h1 a {
  background-image: url('../img/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 180px;
  height: 110px;
  margin: 0 auto 0px;
}

/* Caja del formulario con look premium */
.login form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding:20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border-top: 6px solid #1e3c72; /* azul profundo tipo alfombra VIP */
  animation: fadeInUp 0.6s ease;
}

/* Inputs elegantes */
.login form .input {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 5px;
  width: 100%;
  margin-bottom: 5px;
  transition: border-color 0.3s ease;
}
.login form .input:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 6px rgba(30,60,114,0.4); /* glow azul */
}

/* Botón VIP azul */
.login #wp-submit {
  background: linear-gradient(90deg, #1e3c72, #2a5298); /* azul degradado */
  border: none;
  border-radius: 30px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.login #wp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30,60,114,0.5); /* sombra azul */
}

/* Links extra */
.login #nav a, .login #backtoblog a {
  color: #1e3c72 !important; /* azul consistente */
  font-weight: 500;
  text-decoration: none;
}
.login #nav a:hover, .login #backtoblog a:hover {
  text-decoration: underline;
}

/* Animación de entrada */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reubicar selector de idioma */
body.login .language-switcher {
  order: 1; /* lo sube arriba del formulario */
  text-align: center;
  margin-bottom: 20px;
}

body.login .language-switcher select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#login {
    width: 320px;
    padding: 0% 0 0; */
    margin: auto;
	
	