.verify-step {
  br {
    display: none;
  }
  
  div p {
    width: 100%;
  }
  
  .verify-block {
    margin-bottom: 32px;
  }
  .verify-title {
    font-weight: bold;
    font-size: 16px;
    display: block;
  }
  .required {
    color: #b00020;
  }
  .verify-instructions {
    color: #555;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .verify-identity {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .edit-link svg {
    width: 16px;
    height: 16px;
  }
  .verify-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .verify-input {
    width: 100%;
    font-size: 20px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  .verify-footer p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: #888;
  }
  .resend-link {
    color: #888;
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* Disabled resend link styles */
  .resend-link[disabled] {
    color: #ccc !important;
    text-decoration: none !important;
    cursor: not-allowed !important;
    opacity: 0.6;
  }
  
  .verify-timer {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

/* OTP Real-time Validation Styles */
.otp-field-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.otp-valid {
  padding-right: 40px !important;
}

.otp-invalid {
  padding-right: 40px !important;
}

.otp-loading {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: gray;
}

.otp-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

.otp-success-icon {
  background-color: black;
  color: white;
}

.otp-error-icon {
  background-color: #931b23;
  color: white;
}


/* Disable input while validating */
input.otp-validating, input.otp-valid {
  pointer-events: none;
  opacity: 0.8;
}