:root {
  --navy: #102f63;
  --navy2: #173d73;
  --blue: #2f6fed;
  --gold: #d0aa5d;
  --ink: #172033;
  --muted: #667085;
  --line: #e3e8ef;
  --bg: #f3f6fa;
  --white: #fff;
  --green: #16845b;
  --amber: #b76e00;
  --red: #c83f49;
  --shadow: 0 8px 28px rgba(18, 41, 73, 0.07);
}
* {
  box-sizing: border-box;
}
html {
  font-family: Inter, "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}
body {
  margin: 0;
  font-size: 15px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
.login-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  background: radial-gradient(circle at 72% 20%, #204982 0, transparent 34%),
    linear-gradient(145deg, #071d3e, #102f63 58%, #0a244c);
  padding: 28px;
}
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 24px;
}
.login-brand img {
  width: 100px;
  height: 88px;
  object-fit: contain;
}
.login-card {
  width: min(440px, calc(100vw - 32px));
  background: #fff;
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.login-card h1 {
  margin: 6px 0 8px;
  font-size: 30px;
  color: var(--navy);
}
.login-copy {
  margin: 0 0 28px;
  color: var(--muted);
}
label {
  display: block;
  font-weight: 700;
  color: #475467;
}
label > span {
  display: block;
  margin-bottom: 8px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5dce6;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  padding: 11px 12px;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #4e78ad;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.09);
}
textarea {
  resize: vertical;
}
.login-card label {
  margin-top: 17px;
}
.login-card .primary {
  margin-top: 8px;
}
.form-message {
  min-height: 22px;
  color: var(--red);
  font-size: 13px;
}
.demo-link {
  width: 100%;
  border: 0;
  background: none;
  color: #667085;
  padding: 15px 0 0;
}
.login-language {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.login-language button {
  border: 0;
  background: transparent;
  color: #9fb2ce;
  padding: 8px;
}
.login-language button.active {
  color: #fff;
  border-bottom: 2px solid var(--gold);
}
