/* 1. Clean background & layout */
body.login {
  background: #f4f4f2;
}
body.login div#login {
  max-width: 400px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* 2. Remove WP logo & hide reset links styling */
.wp-login-logo,
.login h1 {
  display: none !important;
}
body.login .forgetmenot,
body.login #nav {
  text-align: center;
}

/* 3. Form inputs and button style */
body.login label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}
body.login input[type="text"],
body.login input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}
body.login input#wp-submit {
  width: 100%;
  padding: 12px;
  background: #005a9c;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s ease;
}
body.login input#wp-submit:hover {
  background: #003d66;
}

/* 4. Links style */
body.login .forgetmenot label,
body.login #nav a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #005a9c;
}
body.login #nav a:hover {
  text-decoration: underline;
}

/* 5. Replace footer text */
body.login .privacy-policy-page-link,
body.login .language-switcher {
  display: none;
}
body.login:after {
  content: "The International Masterson Institute";
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  text-align: center;
}
