@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600;700&display=swap");
#desNav,
#mobileNav,
#footerMob,
#footerDes {
  display: none !important;
}

html, body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  background: #F6F5F2;
  color: #111;
  -webkit-font-smoothing: antialiased;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px 80px;
}

.login-topbar {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 36px;
}
.login-topbar .login-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.login-topbar .login-signup-link {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  font-family: "Geist", sans-serif;
  transition: color 0.18s ease;
}
.login-topbar .login-signup-link:hover {
  color: #111;
}
.login-topbar .login-signup-link span {
  color: #0caa56;
  font-weight: 600;
}

.login-card {
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.35s 0.05s ease both;
  margin-top: 55px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-heading {
  margin-bottom: 28px;
}
.login-heading .login-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0caa56;
  margin-bottom: 8px;
}
.login-heading h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 6px;
}
.login-heading h1 span {
  font-style: italic;
  color: #0caa56;
  font-family: "Instrument Serif", serif;
}
.login-heading p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.login-step {
  animation: stepIn 0.28s ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login-step.back {
  animation: stepBack 0.28s ease both;
}

@keyframes stepBack {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hidden {
  display: none !important;
}

.login-email-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
}
.login-email-chip .chip-email {
  font-size: 13.5px;
  font-weight: 600;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.login-email-chip .chip-change {
  font-size: 12.5px;
  font-weight: 600;
  color: #0caa56;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Geist", sans-serif;
  flex-shrink: 0;
  transition: color 0.18s ease;
}
.login-email-chip .chip-change:hover {
  color: #13c265;
}

.login-field {
  margin-bottom: 14px;
}
.login-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  font-family: "Geist", sans-serif;
}
.login-field .pw-wrap {
  position: relative;
}
.login-field .pw-wrap input {
  padding-right: 44px !important;
}
.login-field .pw-wrap .pw-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #888;
  display: flex;
  align-items: center;
  transition: color 0.18s ease;
}
.login-field .pw-wrap .pw-toggle:hover {
  color: #111;
}
.login-field .pw-wrap .pw-toggle svg {
  width: 18px;
  height: 18px;
}
.login-field input[type=email],
.login-field input[type=text],
.login-field input[type=password] {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: "Geist", sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
}
.login-field input[type=email]::-moz-placeholder, .login-field input[type=text]::-moz-placeholder, .login-field input[type=password]::-moz-placeholder {
  color: #bbb;
}
.login-field input[type=email]::placeholder,
.login-field input[type=text]::placeholder,
.login-field input[type=password]::placeholder {
  color: #bbb;
}
.login-field input[type=email]:focus,
.login-field input[type=text]:focus,
.login-field input[type=password]:focus {
  border-color: #13c265;
  box-shadow: 0 0 0 3px rgba(19, 194, 101, 0.1);
}
.login-field input[type=email].err,
.login-field input[type=text].err,
.login-field input[type=password].err {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.08);
}

.login-msg {
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  font-family: "Geist", sans-serif;
}
.login-msg.error {
  color: #d93025;
}
.login-msg.info {
  color: #888;
}

.forgot-link {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #0caa56;
  font-weight: 600;
  text-decoration: none;
  font-family: "Geist", sans-serif;
  transition: color 0.18s ease;
}
.forgot-link:hover {
  color: #13c265;
}

.login-actions {
  margin-top: 22px;
}
.login-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #13c265;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Geist", sans-serif;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(19, 194, 101, 0.28);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.login-actions button:hover {
  background: #0caa56;
  box-shadow: 0 5px 18px rgba(19, 194, 101, 0.38);
  transform: translateY(-1px);
}
.login-actions button:active {
  transform: none;
  box-shadow: none;
}
.login-actions button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.login-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
  font-family: "Geist", sans-serif;
}
.login-bottom a {
  color: #0caa56;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}
.login-bottom a:hover {
  color: #13c265;
}

.login-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.09);
  margin: 20px 0;
}

@media (max-width: 480px) {
  .login-wrapper {
    padding: 0 16px 60px;
  }
  .login-topbar {
    padding: 20px 0 28px;
  }
}/*# sourceMappingURL=login.css.map */