.c-form__row__input {
  position: relative;
}
.form-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-form__row__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}
.text-required {
  color: #C81E1E;
}
.c-form__row__required {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  background: #C81E1E;
  padding: 1px 8px;
  border-radius: 8px;
  color: #fff;
  margin-left: 12px;
  display: inline-block;
}
.c-form__input {
  border: 1px solid #D1D5DB;
  position: relative;
}
.s-form__password-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.s-form__password-icon img {
  width: 12px;
  height: auto;
}
.s-form__password-icon--show {
  display: none;
}
.s-form__password-icon--hide {
  display: block;
}
.s-form__password-icon.is-text .s-form__password-icon--show {
  display: block;
}
.s-form__password-icon.is-text .s-form__password-icon--hide {
  display: none;
}
.c-form__input::placeholder {
  /* color: #6B7280; */
  opacity: 1; /* Firefox requires this to show the color */
}

/* For Internet Explorer 10-11 */
.c-form__input:-ms-input-placeholder {
  /* color: #6B7280; */
}

/* For Microsoft Edge */
.c-form__input::-ms-input-placeholder {
  /* color: #6B7280; */
}

/* For older WebKit browsers (Safari, Chrome) */
.c-form__input::-webkit-input-placeholder {
  /* color: #6B7280; */
}
