/* =========================
   MRB LOGIN — HARD ANCHORED
========================= */

/* Page background */
body.page-template-page-login {
  background: transparent;
}

/* Centering */
body.page-template-page-login .as-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
}

/* Card */
body.page-template-page-login .as-auth-wrapper {
  width: 100%;
  max-width: 800px;
  background: rgba(18, 8, 24, 0.95);
  border-radius: 22px;
  padding: 44px 38px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Title */
body.page-template-page-login .as-auth-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

/* Subtitle */
body.page-template-page-login .as-auth-subtitle {
  color: rgba(255,255,255,0.6);
}

/* Inputs — stronger than Kadence */
body.page-template-page-login .as-login-page input[type="text"],
body.page-template-page-login .as-login-page input[type="password"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
}

/* Focus */
body.page-template-page-login .as-login-page input:focus {
  border-color: #c04cff;
  box-shadow: 0 0 0 3px rgba(192,76,255,0.25);
  outline: none;
}

/* Button */
body.page-template-page-login .as-login-page input[type="submit"] {
  background: linear-gradient(90deg, #a400ff 0%, #ff3fa4 100%);
  border: none;
  border-radius: 18px;
  padding: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(164, 0, 255, 0.35);
}

body.page-template-page-login .as-login-page input[type="submit"]:hover {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #ff3fa4 0%, #a400ff 100%);
  box-shadow: 0 10px 30px rgba(255, 63, 164, 0.45);
}

/* Links */

body.page-template-page-login .pmpro_actions_nav a:hover {
  color: #ff75dd;
}


