.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row label {
  font-size: 20px;
  line-height: 1;
}

.form-row label span {
  color: #CA12AA;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  justify-content: flex-end;
}

.form-field input {
  border-radius: 8px;
  background-color: #F1F1F3;
  border-radius: 1px solid #D8DCE9;
}

.form-field.secondary input {
  background-color: transparent;
}

.form-field.secondary label {
  font-weight: 600;
  margin-bottom: 10px;
}

button.button-primary.form-button {
  font-size: 18px;
  line-height: 20px;
  justify-content: center;
  min-height: 62px;
}

.form-text {
  font-size: 16px;
  line-height: 1;
  color: rgba(51, 51, 51, 0.5);
  margin: 0;
}