/* login-input */
.c-login-input {
  position: relative;
  border-radius: 28px;
  background: #f6f6f6;
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.c-login-input-control {
  flex: 1;
  position: relative;
}
.c-login-input-inner {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding-left: 22px;
  padding-right: 35px;
  background: transparent;
}
.c-login-input:focus-within,
.c-login-input:hover {
  border: 1px solid #f67942;
}
.c-login-input:focus-within {
  background: #fff;
}
.c-login-input-inner::placeholder {
  color: #bdbdbe;
}
.c-login-input-suffix {
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #8a8b91;
  visibility: hidden;
  pointer-events: none;
}
.c-login-input.has-value:focus .c-login-input-suffix,
.c-login-input.has-value:hover .c-login-input-suffix {
  visibility: visible;
  pointer-events: all;
}
.c-login-input-sendCode {
  padding: 0 22px 0 8px;
  font-size: 14px;
  cursor: pointer;
  border-left: 1px solid #e5e5e5;
  color: #f67942;
  width: 80px;
  text-align: center;
}
.c-login-input-sendCode.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
@media screen and (max-width: 749px) {
  .c-login-input-inner {
    height: 48px;
  }
}

/* checkbox */
.c-checkbox {
  gap: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #8a8b92;
  cursor: pointer;
}
.c-checkbox-icon {
  margin-top: 2px;
  color: #e5e5e5;
}
.c-checkbox.checked .c-checkbox-icon {
  color: #f67942;
}

/* textarea */
.c-textarea {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f6f6f6;
  display: flex;
  overflow: hidden;
}
.c-textarea-control {
  resize: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 10px 22px;
  box-sizing: border-box;
  background: transparent;
}
.c-textarea:focus-within,
.c-textarea:hover {
  border: 1px solid #f67942;
}
.c-textarea:focus-within {
  background: #fff;
}
.c-textarea-control::placeholder {
  color: #bdbdbe;
}

/* radio-select */
.c-radio-select {
  gap: 4px;
  height: 40px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
}
.c-radio-select_item {
  flex: 1;
  height: 100%;
  border-radius: 8px;
  color: #8a8b92;
}
.c-radio-select_item > label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9em;
  border-radius: 8px;
}
.c-radio-select input {
  display: none;
}
.c-radio-select input:checked + label {
  color: #fff;
  font-weight: 600;
  background: #f67942;
}
.c-radio-select_item:hover > label {
  background: rgba(246, 121, 66, 0.2);
}
