@charset "utf-8";
/* International College — Login 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 ── */
.site-header {
  background: #00473b;
  width: 100%;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid #003028;
}

.site-header .inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 660px;
}

.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 ── */
.site-subhdr {
  background: #003028;
  display: flex;
  justify-content: center;
  padding: 7px 40px;
}

.site-subhdr .inner {
  width: 660px;
  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;
  gap: 40px;
}

/* ── Login card ── */
.login-card {
  background: #f4f6f5;
  border-radius: 4px;
  padding: 28px 32px 26px;
  width: 380px;
  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"],
.login-card input[type="password"] {
  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,
.login-card input[type="password"]:focus {
  border-color: #00473b;
}

.login-card input[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  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;
}

/* ── Side notes ── */
.side-notes {
  width: 260px;
}

.side-notes a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #141f1c;
  text-decoration: none;
  margin-bottom: 14px;
  line-height: 1.45;
}

.side-notes a:hover { text-decoration: underline; }

.side-notes a .dot {
  width: 15px;
  height: 15px;
  min-width: 15px;
  background: #00473b;
  border-radius: 50%;
  margin-top: 2px;
}

/* ── 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; }


/* ── Forgot password link ── */
.forgot-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #00473b;
  text-decoration: none;
  font-weight: bold;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* ── Form validation error styles ── */
.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;
}