/* Figma hiringdesign/employer/feedback/index.html */
.emp-dashboard-root.ed-page-feedback {
  background: var(--ed-off);
}

.ed-page-head {
  text-align: center;
  padding: 56px 0 40px;
}

.ed-page-head h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ed-ink);
  margin: 0;
}

.ed-feedback {
  padding: 0 0 90px;
}

.ed-fb-card {
  max-width: 830px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 43, 82, 0.08);
  padding: 44px 48px 40px;
}

.ed-fb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.ed-fb-field {
  margin-bottom: 24px;
}

.ed-fb-form-row .ed-fb-field {
  margin-bottom: 24px;
}

.ed-fb-field label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--ed-ink);
}

.ed-fb-field input,
.ed-fb-field select,
.ed-fb-field textarea {
  width: 100%;
  border: 1px solid #dbe2ee;
  background: #fff;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ed-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.ed-fb-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.ed-fb-field select:invalid {
  color: #9aa4b2;
}

.ed-fb-field textarea {
  min-height: 170px;
  resize: vertical;
  display: block;
}

.ed-fb-field input::placeholder,
.ed-fb-field textarea::placeholder {
  color: #9aa4b2;
}

.ed-fb-field input:focus,
.ed-fb-field select:focus,
.ed-fb-field textarea:focus {
  outline: none;
  border-color: var(--ed-brand);
  box-shadow: 0 0 0 3px rgba(27, 95, 196, 0.12);
}

.ed-fb-submit {
  border: none;
  background: var(--ed-brand);
  color: #fff !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 4px;
}

.ed-fb-submit:hover {
  background: var(--ed-brand-dark);
  color: #fff !important;
}

.ed-fb-success {
  display: none;
  max-width: 830px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 43, 82, 0.08);
  padding: 48px 40px;
  text-align: center;
}

.ed-fb-success.show {
  display: block;
}

.ed-fb-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #eaf1fb;
  color: var(--ed-brand);
  display: grid;
  place-items: center;
  font-size: 32px;
}

.ed-fb-success h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ed-ink);
  margin: 0 0 16px;
}

.ed-fb-success p {
  color: var(--ed-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.ed-fb-content.hidden {
  display: none;
}

@media (max-width: 560px) {
  .ed-page-head h1 {
    font-size: 30px;
  }

  .ed-fb-card {
    padding: 30px 22px 28px;
  }

  .ed-fb-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ed-fb-success {
    padding: 36px 24px;
  }
}
