.auth-session-choice {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 91, 68, 0.14);
  border-radius: 14px;
  background: rgba(31, 91, 68, 0.04);
  color: #173d2f;
}

.auth-session-choice__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
}

.auth-session-choice__row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #1f5b44;
  flex: 0 0 auto;
}

.auth-session-choice__label {
  font-weight: 500;
}

.auth-session-choice__note {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(23, 61, 47, 0.8);
}

#auth-page-root[data-auth-view="verify"] .auth-session-choice,
#auth-page-root[data-auth-view="reset-password"] .auth-session-choice {
  margin-top: 10px;
  padding: 9px 12px;
}

@media (max-width: 920px) {
  #auth-page-root[data-auth-view="verify"] .landing-auth-form,
  #auth-page-root[data-auth-view="reset-password"] .landing-auth-form {
    gap: 8px;
  }

  #auth-page-root[data-auth-view="verify"] .landing-auth-field input,
  #auth-page-root[data-auth-view="reset-password"] .landing-auth-field input {
    min-height: 50px;
  }

  #auth-page-root[data-auth-view="verify"] .login-page__actions,
  #auth-page-root[data-auth-view="reset-password"] .login-page__actions {
    gap: 8px;
  }
}
