/* input type */
.input_area[style*="height"],
[class^="input_type"][style*="height"] {
  overflow-y: auto;
  padding: 0 10px;
}

/* input_type01 */
.input_type01 input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #E9E9EB;
  border-radius: 10px;
  color: #333;
  letter-spacing: 0.02em;
  margin: 7px 0;
}

/* input_type02 */
.input_type02 > div{
  padding: 10px 0;
}

.input_type02 input {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding: 0 15px;
  color: #333;
  background: var(--main-background-color);
  margin: 10px 0;
}

/* 인증 실패 시 */
.input_type02 .error > p {
  color: var(--inout-text-error);
}

.input_type02 .error input {
  border: 1px solid var(--inout-text-error);
}

/* 인증 성공 시 */
.input_type02 .success > p {
  color: var(--input-text-success);
}

.input_type02 .success input {
  border: 1px solid var(--input-text-success);
}

.input_type02 div > p {
  font-size: 0.9375rem;
  padding-left: 5px;
}

.input_type02 select {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding-left: 10px;
  color: #333;
  background: var(--main-background-color);
  margin: 10px 0;
}

.input_type02 label > strong {
  color: #333;
  font-weight: 600;
  /* display: block; */
  padding-left: 5px;
}

.input_type02 label > span {
  display: flex;
  align-items: center;
}

.input_type02 label > span > span {
  padding: 0 15px;
}

.input_type02 .phone {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.input_type02 .phone label {
  width: 100%;
}

.input_type02 .phone label + button {
  width: fit-content;
  padding: 16px 18px;
  margin: auto 0 10px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.input_type02 .phone select {
  width: 50%;
  border-radius: 10px 0 0 10px;
}

.input_type02 .phone select + input {
  border-radius: 0 10px 10px 0;
}

/* 인증번호 영역 */
.input_type02 .verification {
  display: flex;
  position: relative;
  align-items: end;
  justify-content: space-between;
  column-gap: 8px;
}

.input_type02 .verification label {
  width: 100%;
}

.input_type02 .verification .reverif {
  position: absolute;
  top: 48px;
  text-align: right;
  font-size: 0.875rem;
  right: 82px;
}

.input_type02 .verification .reverif > button {
  color: var(--main-color);
  font-weight: 500;
  padding: 5px;
}

.input_type02 .verification .timer {
  position: relative;
  top: -1px;
  color: #333;
  padding-right: 0px;
  font-size: 12px;
}

.input_type02 .verification > button {
  width: fit-content;
  padding: 16px 18px;
  margin: auto 0 10px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.input_type02 div > button + p {
  flex-basis: 100%;
}

.input_type02 input[readonly] {
  color: #ababab;
}

.input_type02 label {
  position: relative;
  display: block;
}

.input_type02 label .btn_modify {
  position: absolute;
  right: 15px;
  top: 37px;
}

/* 이메일 */
.input_type02 .email {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.input_type02 .email label {
  width: 75%;
}

.input_type02 .email label + button {
  width: 20%;
  padding: 0 5px;
  margin: auto 0 10px;
  font-size: 0.875rem;
}

/* 여백조정 */
.input_type02 .email label > span > span {
  padding: 0 8px;
}

/* input_type03 */
/* 기본 checkbox 숨기기 */
.input_type03 input[type="checkbox"] {
  display: none;
}

.input_type03 > div + ul {
  margin-top: 30px;
}

.input_type03 input[type="checkbox"] + svg {
  flex-shrink: 0;
}

/* 전체 약관 동의 type01 */
.input_type03 .agreeAll_type01 {
  background-color: var(--main-background-color);
  width: 100%;
  border-radius: 10px;
}

.input_type03 .agreeAll_type01 > label {
  display: flex;
  gap: 10px;
  color: #999;
  font-weight: 500;
  cursor: pointer;
  padding: 20px;
}

/* 개별 약관 동의 */
.input_type03 > ul > li {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.input_type03 li > label {
  display: flex;
  gap: 10px; 
  color: #999;
  font-weight: 500;
  cursor: pointer;
  padding: 10px;
}

.input_type03 > li + li {
  margin-top: 5px;
}

.input_type03 button {
  margin-left: auto;
  padding: 10px;
}

.input_type03 img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.input_type03 svg {
  vertical-align: middle;
}

.input_type03 label span > span{
  color: var(--main-color);
  white-space: nowrap;
}



/* input_type04 */
.input_type04 label  {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.input_type04 input {
  width: 50%;
  height: 45px;
  border-radius: 5px;
  padding: 0 10px;
  color: #333;
  background: var(--main-background-color);
  margin: 5px 0;
}

.input_type04 label > strong {
  color: #333;
  font-weight: 600;
  /* display: block; */
  /* padding-left: 10px; */
}

/* input_type05 */
.input_type05 {
    text-align: center;
    margin-top: 10px;
}

.input_type05 .input_type05_title {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    background: none;
    padding-left: 0;
}

.input_type05_title strong {
    color: #333;
    font-weight: 600;
}

.input_type05_title button {
  font-size: 0.875rem;
  color: #000;
}

.input_type05_title img {
    margin-right: 4px;
    vertical-align: middle;
}

.input_type05 > div {
    background-color: var(--main-background-color);
    border-radius: 5px;
    padding: 10px;
}

.input_type05 h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.input_type05 p  {
    color: #999;
    margin: 10px 0 20px;
}

.input_type05 input[type=file]{
    position: relative;
    display: none;
}

.input_type05 label {
    width: 150px;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--main-background-color);
    border: 1px solid #dfdfdf;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

/* input_type06 */
/* 호실 / 임대유형 */
.input_type06 {
    display: flex;
    gap: 10px;
}

.input_type06 > div {
    width: 50%;
    padding: 10px 0;
}

.input_type06 label > span {
    display: flex;
    gap: 10px;
}

.input_type06 input,
.input_type06 select,
.input_type06 button {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    padding: 0 15px;
    color: #333;
    margin: 10px 0;
}

.input_type06 input {
    background: var(--main-background-color);
    text-align: right;
}

.input_type06 select,
.input_type06 button {
    background-color: white;
    border: 1px solid #EBEBEB;
}
/* input_type07 */
/* 임대비용 */
.input_type07 > div{
    padding: 10px 0 ;
}

.input_type07 strong {
    margin-bottom: 10px;
    display: block;
}

.input_type07 p {
    margin-left: 10px;
    font-size: 0.875rem;
    color: #999;
}

.input_type07 label > span {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.input_type07 input {
    flex: 1 1 calc(50% - 10px);
    text-align: right;
    height: 48px;
    border-radius: 10px;
    color: #333;
    background: var(--main-background-color);
    text-align: right;
    padding: 0 15px;
}