/* Page background */
body.login {
  background: #eef4f7;
}

/* Centre the whole login area */
body.login #login {
  width: 360px;
  padding: 120px 0 0;
}

/* Remove default WP logo block spacing */
body.login #login h1 {
  display: none;
}

/* Top-left logo */
body.login:before {
  content: "";
  position: fixed;
  top: 28px;
  left: 34px;
  width: 220px;
  height: 60px;
  background-image: url("../uploads/OTAP-Logo-Black.png"); /* change filename if needed */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

/* The illustration above the form */
.ud-login-hero {
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}

.ud-login-hero img {
  width: 340px;
  max-width: 100%;
  height: auto;
}

/* Form card */
body.login #loginform,
body.login #registerform,
body.login #lostpasswordform {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* Inputs */
body.login .input,
body.login input[type="text"],
body.login input[type="password"] {
  border: 1px solid #d6dde3;
  border-radius: 2px;
  padding: 10px 12px;
  box-shadow: none;
  font-size: 15px;
}

/* Space the fields like the screenshot */
body.login .user-pass-wrap,
body.login p {
  margin-bottom: 14px;
}

/* Button row */
body.login p.submit {
  margin-top: 10px;
}

/* Primary button (pill) */
body.login .button-primary {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  height: auto;
  box-shadow: none;
  text-shadow: none;
  background: #0a93b5;
  font-size: 15px;
}

body.login .button-primary:hover,
body.login .button-primary:focus {
  background: #087f9c;
}

/* Hide the checkbox row (remember me) if you want it clean */
body.login .forgetmenot {
  display: none;
}

/* Links under button */
body.login #nav,
body.login #backtoblog {
  text-align: center;
  margin-top: 18px;
}

body.login #nav a,
body.login #backtoblog a {
  color: #117ea0;
  text-decoration: none;
  font-size: 12px;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
  text-decoration: underline;
}

/* Footer-style text at the bottom */
body.login #login:after {
  content: "© 2026 Overseas Trust and Pension";
  display: block;
  text-align: center;
  margin-top: 22px;
  color: #6b7b86;
  font-size: 11px;
}

/* Responsive tweak */
@media (max-width: 420px) {
  body.login:before {
    left: 16px;
    width: 180px;
  }

  body.login #login {
    width: 320px;
    padding-top: 110px;
  }
}