/* ===== RESET TOTAL DO LOGIN ===== */
html, body.login {
  height: 100%;
}

body.login {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ecf9;
  font-family: "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
}

/* ===== FUNDO COM ONDAS ===== */
body.login:before,
body.login:after{
  content:"";
  position: absolute;
  width: 160%;
  height: 45%;
  left: -30%;
  border-radius: 50%;
  z-index: 0;
}

body.login:before{
  top: -15%;
  background: #c2c2c2;
  transform: rotate(-5deg);
}

body.login:after{
  bottom: -20%;
  background: #c2c2c2;
  transform: rotate(8deg);
}

/* ===== CONTAINER CENTRAL ===== */
#login {
  position: relative;
  z-index: 2;
  width: 480px;
  max-width: 95%;
  padding: 0;
  text-align: center;
}

/* ===== LOGO CENTRALIZADA ===== */
.login h1 {
  margin-bottom: 25px;
}

.login h1 a {
  background-image: url("https://metropolesmaranhao.com.br/wp-content/uploads/elementor/thumbs/logo-metropoles-rlsqhas87aiaigp6sokpwclgac6u3gztfp8rdsp5qo.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 260px;
  height: 80px;
  margin: 0 auto;
}

/* ===== CARD ===== */
.login form {
  background: #D50201;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
  border: none;
}

/* Remove labels */
.login label {
  display: none;
}

/* Inputs */
.login input[type="text"],
.login input[type="password"] {
  height: 52px;
  border-radius: 4px;
  border: none;
  margin-bottom: 15px;
  padding: 0 15px 0 45px;
  font-size: 15px;
  box-shadow: none;
}

/* Botão */
.login .wp-core-ui .button-primary {
  width: 100%;
  height: 48px;
  background: #733396;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.login .wp-core-ui .button-primary:hover {
  background: #5e287c;
}

/* Centralizar lembrar-me */
.login .forgetmenot {
  float: none;
  margin-bottom: 15px;
  text-align: left;
}

/* Centralizar links abaixo */
.login #nav,
.login #backtoblog,
.login .privacy-policy-page-link {
  text-align: center;
  margin-top: 15px;
}

/* ===== REMOVER BLOCO DE IDIOMA DA LATERAL ===== */
.language-switcher {
  position: absolute !important;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}