.consent-otp {
  grid-column: 1/-1;
  border: 2px solid #b9d4bf;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4faf5, #edf6ef);
  padding: 20px;
  box-shadow: 0 8px 22px rgba(31, 107, 71, 0.09);
}
.consent-otp::before {
  content: 'Phone consent verification';
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.consent-otp-row {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}
.consent-otp-row label {
  flex: 1;
  min-width: 180px;
}
.consent-otp-row .btn {
  min-height: 44px;
}
.consent-otp-status {
  display: block;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 700;
  color: #667269;
}
.consent-otp-status.error {
  color: var(--danger);
}
.consent-otp-status.success {
  color: var(--green);
}
.consent-otp.verified {
  border-color: #4d9a61;
  background: #edf8ef;
  box-shadow: 0 8px 24px rgba(31, 107, 71, 0.15);
}
.consent-otp.verified::before {
  content: 'Consent successfully verified';
}
.consent-otp .otp-verify.is-verified {
  border-color: #26704d;
  background: #26704d;
  color: #fff;
  opacity: 1;
  cursor: default;
}
@media (max-width: 600px) {
  .consent-otp {
    padding: 16px;
  }
  .consent-otp-row {
    display: grid;
  }
  .consent-otp-row label {
    min-width: 0;
  }
}
