/* === Login BG con vignettatura === */ :root {
  --bg: #2d2d2d; /* colore base */
  --vig: rgba(0, 0, 0, .72); /* intensità vignetta ai bordi */
  --glow: rgba(255, 255, 255, .06); /* leggero bagliore centrale */
}
body.login {
  min-height: 100vh;
  background: var(--bg);
  background-attachment: fixed;
  position: relative;
}
/* Layer del gradiente, non interferisce con i click */
body.login::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: /* glow soft verso il centro (un po' alto, dove sta il form) */ radial-gradient(1000px 700px at 50% calc(50% - 60px), var(--glow) 0%, transparent 60%), /* vera vignettatura ai bordi */ radial-gradient(1400px 900px at 50% 50%, transparent 55%, var(--vig) 100%), /* fallback base */ var(--bg);
  z-index: -1;
}
/* Sfondo pagina login */
body.login {
  background: #f6f8fb;
}
/* Logo WP -> tuo logo */
body.login #login h1 a {
  background-image: url('../assets/logo.png'); /* metti qui il tuo logo */
  background-size: contain;
  width: 311px;
  height: 107px;
  margin-bottom: 16px;
}
.wp-core-ui .button-primary{
  transition:.3s
}
.wp-core-ui .button-primary:hover{
  background:#8f7948!important;
  border-color:#8f7948!important
}
/* Card form */
body.login #loginform {
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 3rem;
}
/* Pulsante primario */
body.login .wp-core-ui .button-primary {
  background: #0F403A;
  border-color: #0F403A;
  text-shadow: none;
  box-shadow: none;
}
body.login .wp-core-ui .button-primary:hover {
  background: #0c322e;
  border-color: #0c322e;
}
/* Link secondari */
#backtoblog{
  display: none;
} /* togli se vuoi mantenerli */
.language-switcher {
  display: none
}
.wp-core-ui .button-primary {
  background: #333333;
  font-size: 1rem;
  text-transform: uppercase;
  position: absolute;
  lefT: 50%;
  transform: translateX(-50%);
  bottom: 2rem
}
.user-pass-wrap {
  margin-bottom: 3rem
}
#loginform {
  position: relative;
}
.forgetmenot {
  display: none;
  bottom: 0.5rem;
  right: 20px;
}
#login {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
  padding: 0;
  width: 450px;
}
.wp-login-logo{
  filter:invert(1) brightness(2)
}
a.wp-login-lost-password {
    color: #fff!important;
    font-size: 1.25rem;

}
#nav{
    width:100%;
    text-align:center;
    padding: 0!important;
}