:root {
  --green: #81b92a;
  --green-dark: #62b32f;
  --blue: #2fa8d8;
  --orange: #ef6b22;
  --dark: #1f1e1d;
  --text: #1d1d1d;
  --muted: #5f666a;
  --bg: #f4f4ef;
  --card: #fff;
  --border: #3c3a391f;
  --shadow: 0 20px 50px #1f1e1d29;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  background: radial-gradient(circle at 12% 12%, #81b92a29, #0000 34%), linear-gradient(135deg, #f4f4ef 0%, #fff 100%);
  font-family: Archivo Condensed, Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.cursor-glow {
  width: 360px;
  height: 360px;
  transform: translate(calc((var(--mx, -9999) * 1px) - 50%),
    calc((var(--my, -9999) * 1px) - 50%));
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  background: radial-gradient(circle, #81b92a38, #0000 70%);
  border-radius: 999px;
  transition: opacity .2s;
  position: fixed;
  top: 0;
  left: 0;
}

.page {
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 100vh;
  display: grid;
  position: relative;
}

.hero {
  background: radial-gradient(circle at 18% 18%, #ffffff2e, #0000 32%), linear-gradient(135deg, #62b32f 0%, #81b92a 100%);
  align-items: center;
  min-height: 100vh;
  padding: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-logo-bg {
  opacity: .08;
  width: 480px;
  position: absolute;
  bottom: -80px;
  right: -90px;
}

.hero-inner {
  z-index: 2;
  color: #fff;
  max-width: 720px;
  position: relative;
}

.hero-back-link {
  color: #fff;
  align-items: center;
  margin-bottom: 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.hero-badge {
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #ffffff2e;
  border: 1px solid #ffffff3d;
  border-radius: 999px;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.hero-title {
  letter-spacing: -2px;
  margin: 24px 0 18px;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: .92;
}

.hero-title span {
  color: #1f1e1d;
  text-shadow: 0 5px 18px #ffffff2e;
}

.hero-text {
  color: #fffffff0;
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.34;
}

.hero-text strong {
  color: #fff;
}

.hero-text-strong {
  font-size: 20px;
}

.hero-text-strong span {
  color: #1f1e1d;
  font-weight: 800;
}

.hero-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  display: grid;
}

.hero-highlight-card {
  backdrop-filter: blur(12px);
  background: #ffffff29;
  border: 1px solid #ffffff38;
  border-radius: 24px;
  min-height: 112px;
  padding: 20px;
}

.hero-highlight-card strong {
  color: #fff;
  margin-bottom: 8px;
  font-size: 24px;
  display: block;
}

.hero-highlight-card span {
  color: #ffffffe0;
  font-size: 17px;
  line-height: 1.32;
  display: block;
}

.panel {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 48px;
  display: flex;
}

.card {
  border: 1px solid var(--border);
  width: 100%;
  max-width: 560px;
  box-shadow: var(--shadow);
  background: #fffffff5;
  border-radius: 32px;
  padding: 34px;
}

.card-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  display: flex;
}

.card-kicker {
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  display: block;
}

.card-header h2 {
  color: var(--text);
  margin: 0;
  font-size: 38px;
  line-height: 1;
}

.subtitle {
  color: var(--muted);
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.4;
}

.badge {
  min-height: 34px;
  color: var(--green-dark);
  text-transform: uppercase;
  background: #81b92a24;
  border-radius: 999px;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.coop-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  display: grid;
}

.coop-card {
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #3c3a391a;
  border-radius: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  width: 100%;
  min-height: 116px;
  padding: 18px;
  transition: all .22s;
  display: grid;
}

.coop-card:hover {
  border-color: #81b92a73;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px #1f1e1d1f;
}

.coop-card img {
  object-fit: contain;
  background: #f6f6f2;
  border-radius: 18px;
  grid-row: 1 / span 2;
  width: 92px;
  height: 78px;
  padding: 8px;
}

.coop-card strong {
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  display: block;
}

.coop-card span {
  color: var(--muted);
  font-size: 16px;
}

.back-coop-btn {
  color: var(--green-dark);
  cursor: pointer;
  background: none;
  border: 0;
  margin: -4px 0 18px;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
}

.form {
  gap: 18px;
  display: grid;
}

.field label {
  color: var(--text);
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 800;
  display: block;
}

.input {
  width: 100%;
  min-height: 52px;
  color: var(--text);
  background: #fff;
  border: 1px solid #3c3a3929;
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  font-size: 17px;
}

.input:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px #81b92a29;
}

.row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.checkbox {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 16px;
  display: inline-flex;
}

.link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 17px;
  font-weight: 800;
  transition: all .2s;
}

.btn-primary {
  background: linear-gradient(135deg,var(--green-dark),var(--green));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px #62b32f38;
}

.btn-block {
  width: 100%;
}

.loadingbar {
  background: #3c3a3914;
  border-radius: 999px;
  height: 4px;
  display: none;
  overflow: hidden;
}

.loadingbar.show {
  display: block;
}

.loadingbar div {
  background: var(--green-dark);
  border-radius: 999px;
  width: 40%;
  height: 100%;
  animation: 1s ease-in-out infinite loading;
}

@keyframes loading {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

.msg {
  min-height: 22px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.msg.is-error {
  color: #b42318;
}

.msg.is-success {
  color: #247a2f;
}

.footer-note {
  color: var(--muted);
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.45;
}

@media (width <= 980px) {
  .page {
    grid-template-columns: 1fr;
  }

  .hero, .panel {
    min-height: auto;
    padding: 34px 18px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
    padding: 26px 20px;
  }
}

@media (width <= 520px) {
  .hero-text {
    font-size: 18px;
  }

  .hero-text-strong {
    font-size: 17px;
  }

  .card-header {
    flex-direction: column;
  }

  .coop-card {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 104px;
  }

  .coop-card img {
    width: 72px;
    height: 66px;
  }

  .coop-card strong {
    font-size: 22px;
  }
}

.password-wrap {
  position: relative;
}

.password-wrap .input {
  padding-right: 52px;
}

.password-toggle {
  cursor: pointer;
  background: #81b92a24;
  border: 0;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.password-toggle:hover {
  background: #81b92a3d;
}
