/* Sign-in styling for the board portal.
   Matches the NNAS brand: navy structure, red primary action, pill buttons,
   Noto Sans. Loaded only on wp-login.php. */

body.login {
  background: #F4F7FA;
  color: #00324D;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* A thin brand rule across the top of the page. */
body.login:before {
  content: '';
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #00324D 0%, #00324D 62%, #CF1221 62%, #CF1221 100%);
}

#login { width: min(430px, 92vw); padding-top: 8vh; }

.login h1 a {
  background: none;
  text-indent: 0;
  width: auto;
  height: auto;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #00324D;
  line-height: 1.3;
}
.login h1 a:hover, .login h1 a:focus { color: #00324D; box-shadow: none; }

.login form {
  border: 1px solid #E6E7E8;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 50, 77, .05), 0 10px 28px rgba(0, 50, 77, .07);
  padding: 30px 30px 26px;
  margin-top: 18px;
}

.login label { font-weight: 600; font-size: 13px; color: #00324D; }

.login input[type=text],
.login input[type=password] {
  border: 1px solid #CFD5DE;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 15px;
  box-shadow: none;
}
.login input[type=text]:focus,
.login input[type=password]:focus {
  border-color: #00324D;
  box-shadow: 0 0 0 3px #EAF5FF;
  outline: none;
}

.wp-core-ui .button-primary {
  background: #CF1221;
  border: 2px solid #CF1221;
  border-radius: 9999px;
  padding: 6px 24px;
  height: auto;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  transition: all .2s ease-in-out;
}
.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
  background: #B30D14;
  border-color: #B30D14;
  box-shadow: none;
}

/* The plugin appends a standing note about who this portal is for. */
.login .message {
  background: #EAF5FF;
  border: 1px solid #D1E9FF;
  border-left: 4px solid #CF1221;
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 13.5px;
  color: #00324D;
  box-shadow: none;
}

.login #nav, .login #backtoblog { padding: 12px 0 0; text-align: center; }
.login #nav a, .login #backtoblog a { color: #5A6B79; font-size: 13px; }
.login #nav a:hover, .login #backtoblog a:hover { color: #CF1221; }

.login .privacy-policy-page-link { display: none; }
