.input {
  border: 1px solid rgb(222, 226, 230);
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  padding-right: 90px;
  font-size: 16px;
}

.input::placeholder {
  color: rgb(150, 151, 152);
}

.flex-col-center {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.error-msg {
  color: rgb(255, 44, 44);
  text-align: left;
  font-size: 14px;
  margin-left: 5px;
  margin-bottom: 25px;
}

.agree-container {
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 30px;
}

.agree-checkbox {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agree-checkbox input[type="checkbox"] {
  appearance: none; /* 브라우저 기본 스타일 제거 */
  -webkit-appearance: none; /* 사파리/크롬 호환 */
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 1px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.agree-checkbox input[type="checkbox"]:checked {
  background-color: black;
}

.agree-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1.5px;
  left: 3.5px;
  width: 4px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.apply-consultaion-btn {
  width: 100%;
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border: 0px;
}
