:root {
  --primary: #0b5d3b; --primary-dark: #07452c; --accent: #d5f044; --text: #17231d; --muted: #68756e; --border: #dce4df; --surface: #fff; --background: #f2f6f3; --error: #a12626; --error-bg: #fff0f0; --success: #17643b; --success-bg: #ebf8f0;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--background); -webkit-font-smoothing: antialiased;
}
body {
  min-width: 320px; min-height: 100vh; margin: 0; font-size: 16px; line-height: 1.5; color: var(--text); background: var(--background);
}
a {
  color: var(--primary); text-decoration: none;
}
a:hover {
  color: var(--primary-dark);
}
button, input {
  font: inherit;
}
.site {
  width: min(100% - 40px, 1240px); margin: 0 auto;
}
.site-header {
  display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px; color: var(--text);
}
.brand:hover {
  color: var(--text);
}
.brand-mark {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--accent); background: var(--primary);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-text strong {
  font-size: 19px; font-weight: 800; letter-spacing: -.02em;
}
.brand-text small {
  margin-top: 4px; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.site-nav {
  display: flex; align-items: center; gap: 8px;
}
.site-nav-link {
  padding: 10px 14px; border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--muted);
}
.site-nav-link:hover, .site-nav-link.is-active {
  color: var(--primary); background: rgba(11, 93, 59, .08);
}
.site-main {
  padding: 48px 0 80px;
}
.content-card {
  padding: 40px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); box-shadow: 0 12px 40px rgba(14, 47, 31, .07);
}
.content-card h1 {
  margin: 4px 0 12px; font-size: clamp(36px, 6vw, 64px); line-height: 1; letter-spacing: -.045em;
}
.content-lead {
  max-width: 620px; margin: 0; font-size: 18px; color: var(--muted);
}
.eyebrow {
  margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
}
.auth-body {
  display: flex; align-items: stretch; background: linear-gradient(135deg, #f7faf8 0%, #e8f1eb 100%);
}
.auth-body::after {
  position: fixed; z-index: 0; top: 0; right: 0; width: 42%; height: 100%; content: ""; background: radial-gradient(circle at 75% 20%, rgba(213, 240, 68, .24), transparent 25%), linear-gradient(145deg, #0d7149 0%, #063923 75%);
}
.wrapper {
  position: relative; z-index: 1; display: flex; flex-direction: column; width: 58%; min-height: 100vh; padding: 42px clamp(30px, 6vw, 90px) 26px; background: var(--surface);
}
.sp-header {
  display: flex; align-items: center;
}
.clearfix {
  display: none;
}
.page-wrapper, .container-fluid, .table-struct, .table-cell {
  display: flex; flex: 1; width: 100%;
}
.auth-form-wrap {
  align-items: center;
}
.auth-form {
  width: min(100%, 460px); margin: 50px 0;
}
.row, .col-sm-12, .col-xs-12, .form-wrap {
  width: 100%;
}
.mb-30 {
  margin: 0 0 30px;
}
.text-center {
  text-align: left;
}
h3 {
  margin: 0 0 10px; font-size: clamp(36px, 4vw, 52px); line-height: 1.05; font-weight: 800; letter-spacing: -.045em;
}
.auth-subtitle {
  margin: 0; font-size: 16px; color: var(--muted);
}
.form-group {
  position: relative; width: 100%; margin: 0 0 21px;
}
.control-label {
  display: block; margin: 0 0 8px; font-size: 14px; font-weight: 750; color: var(--text);
}
.form-control {
  width: 100%; height: 54px; padding: 0 16px; border: 1px solid var(--border); border-radius: 12px; outline: none; font-size: 16px; color: var(--text); background: var(--surface); transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form-control:hover {
  border-color: #aebdb5;
}
.form-control:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(11, 93, 59, .12);
}
.pull-right {
  float: right;
}
.font-12 {
  font-size: 13px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.block {
  display: block;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 54px; padding: 12px 22px; border: 0; border-radius: 12px; cursor: pointer; font-size: 15px; font-weight: 800; text-align: center; color: #fff; background: var(--primary); box-shadow: 0 12px 24px rgba(11, 93, 59, .2); transition: transform 180ms ease, background 180ms ease;
}
.btn:hover {
  transform: translateY(-1px); background: var(--primary-dark);
}
.btn:focus-visible {
  outline: 3px solid rgba(11, 93, 59, .25); outline-offset: 3px;
}
.alert {
  margin: 0 0 26px; padding: 14px 16px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 650;
}
.alert-danger {
  border-color: #f3c7c7; color: var(--error); background: var(--error-bg);
}
.alert-success {
  border-color: #bfe3ce; color: var(--success); background: var(--success-bg);
}
.alert .close {
  display: none;
}
@media (max-width: 900px) {
  .auth-body::after {
    display: none;
  }
  .wrapper {
    width: 100%; padding: 34px clamp(24px, 8vw, 70px) 24px;
  }
  .auth-form {
    margin: 64px auto;
  }
}
@media (max-width: 560px) {
  .site {
    width: min(100% - 28px, 1240px);
  }
  .site-header {
    align-items: flex-start; min-height: 0; padding: 20px 0;
  }
  .site-nav {
    flex-direction: column; align-items: flex-end;
  }
  .site-nav-link {
    padding: 5px 8px;
  }
  .site-main {
    padding: 26px 0 50px;
  }
  .content-card {
    padding: 26px;
  }
  .wrapper {
    padding: 24px 22px 20px;
  }
  .auth-form {
    margin: 52px auto;
  }
  h3 {
    font-size: 38px;
  }
  .brand-mark {
    width: 44px; height: 44px; border-radius: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
  }
}