.accept-invite-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px calc(24px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.accept-invite-card {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}

.accept-invite-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b1b;
}

.accept-invite-status {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #667085;
}

.accept-invite-status.is-error {
  color: #c62828;
}

.accept-invite-form {
  margin-top: 16px;
}

.accept-invite-form.is-hidden {
  display: none;
}

.accept-invite-email-row {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.45;
  color: #1b1b1b;
}

.accept-invite-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #1b1b1b;
}

.accept-invite-input {
  width: 100%;
  min-height: 40px;
  height: 46px;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #1b1b1b;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 10px 16px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.accept-invite-input::placeholder {
  color: #8b95a5;
}

.accept-invite-input:focus {
  border-color: #a5b4fc;
}

.accept-invite-submit {
  margin-top: 14px;
  width: 100%;
  border: none;
  border-radius: 16px;
  background: #1b1b1b;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  transition: transform 0.08s ease, opacity 0.1s ease, background 0.12s ease;
}

.accept-invite-submit:active {
  transform: translateY(1px);
}

.accept-invite-submit[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
