.newNominationFormSection {
  padding: 90px 0;
}

.newNominationForm-header {
  text-align: center;
  margin-bottom: 2rem;
}

.newNominationForm-header .newNominationForm-badge {
  display: inline-block;
  background: #2c2c2a;
  color: #f1efe8;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.newNominationForm-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: #2c2c2a;
  margin: 0 0 0.4rem;
}

.newNominationForm-header p {
  font-size: 14px;
  color: #5f5e5a;
  margin: 0;
}

.newNominationForm-card {
  background: #ffffff;
  border-radius: 16px;
  border: 0.5px solid #d3d1c7;
  padding: 2.5rem;
}

.newNominationForm-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid #d3d1c7;
}

.newNominationForm-field {
  margin-bottom: 1.25rem;
}

.newNominationForm-label {
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2a;
  margin-bottom: 6px;
  display: block;
}

.newNominationForm-label span {
  color: #e24b4a;
  margin-left: 2px;
}

.newNominationForm-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #2c2c2a;
  background: #ffffff;
  border: 0.5px solid #d3d1c7;
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.newNominationForm-input:focus {
  border-color: #534ab7;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 74, 183, 0.08);
}

.newNominationForm-input::placeholder {
  color: #c4c2ba;
}

.newNominationForm-file-area {
  position: relative;
  border: 1.5px dashed #b4b2a9;
  border-radius: 10px;
  background: #ffffff;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.newNominationForm-file-area:hover {
  border-color: #534ab7;
  background: #eeedfe;
}

.newNominationForm-file-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.newNominationForm-file-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eeedfe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.newNominationForm-file-icon svg {
  width: 18px;
  height: 18px;
}

.newNominationForm-file-title {
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2a;
  margin-bottom: 4px;
}

.newNominationForm-file-sub {
  font-size: 12px;
  color: #888780;
}

.newNominationForm-file-name {
  font-size: 12px;
  color: #534ab7;
  margin-top: 6px;
  font-weight: 500;
  display: none;
}

.newNominationForm-divider {
  height: 0.5px;
  background: #d3d1c7;
  margin: 1.75rem 0;
}

.newNominationForm-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #2c2c2a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}

.newNominationForm-submit:hover {
  background: #444441;
}

.newNominationForm-submit:active {
  transform: scale(0.98);
}

.newNominationForm-required-note {
  font-size: 12px;
  color: #888780;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .newNominationForm-header h1 {
    font-size: 25px;
  }
}
