:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #17202a;
  background: #f4f6f7;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #f4f6f7;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-shell {
  width: min(100%, 420px);
}

.login-panel {
  padding: 32px;
  border: 1px solid #d5dadd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgb(23 32 42 / 8%);
}

.site-name,
.eyebrow {
  margin: 0 0 10px;
  color: #2d6a4f;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.login-panel form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #aab4b9;
  border-radius: 6px;
  background: #ffffff;
  color: #17202a;
  outline: none;
}

input:focus {
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgb(45 106 79 / 15%);
}

button,
.primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #205c43;
  border-radius: 6px;
  background: #2d6a4f;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

button:hover,
.primary-link:hover {
  background: #205c43;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: #a2272f;
  font-size: 14px;
}

.site-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid #d5dadd;
  background: #ffffff;
}

.brand {
  color: #17202a;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.secondary-button {
  min-height: 36px;
  padding: 0 14px;
  border-color: #aab4b9;
  background: #ffffff;
  color: #17202a;
}

.secondary-button:hover {
  background: #eef1f2;
}

.profile-shell {
  width: min(100% - 40px, 960px);
  margin: 0 auto;
  padding: 72px 0;
}

.profile-intro {
  max-width: 640px;
}

.profile-summary {
  margin: 20px 0 28px;
  color: #52616b;
  font-size: 17px;
  line-height: 1.7;
}

.primary-link {
  padding: 0 18px;
}

@media (max-width: 560px) {
  .login-panel {
    padding: 24px;
  }

  .site-header {
    padding: 0 20px;
  }

  .profile-shell {
    padding: 48px 0;
  }

  h1 {
    font-size: 28px;
  }
}

