@charset "utf-8";
/* International College — Forgot Password Page Styles */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background: #e8eeec;
  color: #141f1c;
  font-size: 14px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Banner header — centered ── */
.site-header {
  background: #00473b;
  width: 100%;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: 4px solid #003028;
}

.site-header img.logo {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: normal;
  filter: brightness(1.2) contrast(1.1);
}

.hd-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
}

.hd-sub {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Dark sub-bar — centered ── */
.site-subhdr {
  background: #003028;
  text-align: center;
  padding: 7px 40px;
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: bold;
}

/* ── Main layout ── */
.main-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* ── Card ── */
.login-card {
  background: #f4f6f5;
  border-radius: 4px;
  padding: 28px 32px 26px;
  width: 420px;
  border: 1px solid #dde3e1;
}

.login-card .field-wrap {
  margin-bottom: 18px;
}

.login-card label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #00473b;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.login-card input[type="text"] {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #dde3e1;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #141f1c;
  background: white;
  outline: none;
}

.login-card input[type="text"]:focus {
  border-color: #00473b;
}

.login-card input[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  background: #00473b;
  color: white;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.login-card input[type="submit"]:hover {
  background: #003028;
}

/* ── Back to login button ── */
.btn-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.btn-back-login {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #00473b;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
  border-radius: 3px;
  border: 1.5px solid #dde3e1;
  background: #f4f6f5;
}

.btn-back-login:hover { background: #dde3e1; }

/* ── Message boxes ── */
.msg-box {
  display: none;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5;
}

.msg-box.success {
  background: #eaf2f0;
  border: 1.5px solid #00473b;
  color: #00473b;
}

.msg-box.error {
  background: #fff5f5;
  border: 1.5px solid #c0392b;
  color: #c0392b;
}

.msg-box.partial {
  background: #fff8f0;
  border: 1.5px solid #e67e22;
  color: #a04000;
}

.msg-box.contact {
  background: #fff5f5;
  border: 1.5px solid #c0392b;
  color: #c0392b;
}

/* ── Validation ── */
.login-card input.input-error {
  border-color: #c0392b;
  background: #fff5f5;
}

span.field-error {
  display: block;
  color: #c0392b;
  font-size: 10px;
  font-weight: bold;
  margin-top: 4px;
}

/* ── Contact note ── */
.contact-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: white;
  border: 1px solid #dde3e1;
  border-radius: 4px;
  font-size: 11.5px;
  color: #3d5450;
  line-height: 1.75;
}

.contact-note-title {
  font-weight: bold;
  color: #141f1c;
  margin-bottom: 6px;
  font-size: 12px;
}

.contact-note a {
  color: #00473b;
  font-weight: bold;
  text-decoration: none;
}

.contact-note a:hover { text-decoration: underline; }

/* ── Footer ── */
.site-footer {
  background: #f0ebe0;
  border-top: 1px solid #d5cfc3;
  padding: 18px 40px;
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 4px;
}

.site-footer .assist {
  color: #00473b;
  font-weight: bold;
}

.site-footer .copyright {
  font-size: 11px;
  color: #888888;
  margin-top: 6px;
}

.site-footer .copyright a {
  color: #00473b;
  text-decoration: none;
  font-weight: bold;
}

.site-footer .copyright a:hover { text-decoration: underline; }