.main-page-header {
  box-sizing: border-box;
  background-image: url("/assets/images/resource/page-header-bg.png");
  margin: 0 auto;
  margin-top: 160px;
  border-radius: 13px;
  width: 98%;
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 100px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.main-page-header h1 {
  margin: 0;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
}

.main-page-header p {
  margin: 0;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
}

.report-section {
  padding: 50px 0 80px;
  background: #f5f8ff;
}

.report-section h2,
.report-section h3 {
  color: #3E4095;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.report-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-inline: 12px;
}

.report-section__header h2 {
  margin: 0;
  font-size: 28px;
  color: #192144;
  font-family: 'Akira', sans-serif;
}

.report-section__divider {
  flex: 1;
  height: 3px;
  background: #e3333a;
  border-radius: 6px;
}

.divider-header {
  padding-block: 16px;
  padding-block-end: 30px;
}

.divider-header h2 {
  color: #3E4095;
}

.divider-header .divider {
  height: 2px;
  background-color: #ED3438;
  margin-block: 16px;
}

.report-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: transparent;
  border-radius: 16px;
  padding: 28px;
  box-shadow: none;
}

.report-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.report-card__form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.report-card__form {
  align-self: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #414141;
  font-size: 14px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8a8a;
  font-size: 14px;
}

.input-with-icon input {
  width: 100%;
  border: 1px solid #e3e6f0;
  border-radius: 8px;
  padding: 12px 12px 12px 38px;
  font-size: 14px;
  background: #f8f9fd;
}

.input-with-icon input:focus {
  outline: none;
  border-color: #cdd4f0;
  box-shadow: 0 0 0 3px rgba(237, 52, 56, 0.12);
}

.report-submit {
  margin-top: 6px;
  padding: 14px 24px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef3c3c 0%, #e92f3f 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.report-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(237, 52, 56, 0.25);
  opacity: 0.94;
}

@media (max-width: 992px) {
  .report-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .report-card__image img {
    max-height: 320px;
  }
}

@media (max-width: 576px) {
  .main-page-header {
    margin-top: 90px;
    padding: 80px 0 60px;
  }

  .report-section__header h2 {
    font-size: 22px;
  }

  .report-card {
    padding: 18px;
  }
}
