/* Feedback page */
@media (min-width: 1550px) {
  .background-texture .feedback-wrapper .container {
    background: var(--color-bg-accent);
    padding: 20px 2.5rem;
    border-radius: 12px;
    margin: 20px auto;
  }
}

.e-form-input.feedback-textarea {
  max-width: 100%;
  height: auto;
  min-height: 12rem;
  resize: none;
  overflow: hidden;
}

.feedback-error-tooltip-wrapper {
  position: absolute;
  top: calc(100% + 8px);
  left: 20px;
  z-index: 1000;
  pointer-events: none;
}

.feedback-error-tooltip {
  display: flex;
  align-items: center;
  background: #fff0dd;
  border: 1px solid #fdc181;
  border-radius: 4px 4px 0 0;
  padding: 6px 12px;
  box-shadow: none;
  min-width: 200px;
  max-width: 300px;
  height: auto;
  min-height: 28px;
}

.feedback-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #fff;
  color: #ff8c00;
  border: 1px solid #ff8c00;
  border-radius: 3px;
  font-weight: bold;
  font-size: var(--text-xxs);
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
}

.feedback-error-text {
  color: #000;
  font-size: var(--text-xxs);
  line-height: 1.4;
  flex: 1;
}

.feedback-error-arrow {
  position: absolute;
  bottom: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff0dd;
}

.auth-form-message {
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: var(--text-md);
}

