body.login {
  background: radial-gradient(circle at 30% 30%, rgba(122,30,45,.12), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(0,0,0,.08), transparent 45%),
              #f7f6f3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Centralização geral */
#login {
  width: 380px;
}

/* LOGO (troque o LINK pelo seu) */
body.login #login h1 {
  text-align: center;
  margin-bottom: 24px;
}
body.login #login h1 a {
  background: url('https://arcavault.com.br/wp-content/uploads/2026/01/cropped-42fa08cb-a00a-4308-bab2-57305dee0adb-1-1.png') no-repeat center;
  background-size: contain;
  width: 260px;
  height: 110px;
  display: block;
  margin: 0 auto;
  text-indent: -9999px;
}

/* Caixa */
#loginform {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  padding: 28px;
}

/* Inputs */
#loginform input {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* Botão "Entrar" premium */
.wp-core-ui .button-primary {
  background: linear-gradient(180deg, #7a1e2d, #5c1622);
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  box-shadow: 0 8px 22px rgba(122,30,45,.35);
  font-weight: 600;
}
.wp-core-ui .button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(122,30,45,.45);
}

/* Integração do seletor de idioma */
#login .language-switcher {
  margin-top: 16px;
  text-align: center;
}
#login .language-switcher select {
  border-radius: 14px;
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: #fff;
}
/* Remove o quadrado (focus) do botão do olho */
.login .wp-pwd button {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

.login .wp-pwd button:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Remove o contorno azul ao clicar na logo */
.login h1 a:focus,
.login h1 a:active {
  outline: none !important;
  box-shadow: none !important;
}

