@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);


html {
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background: #EBDBEC;
}

.wrap {
  max-width: 1650px;
  margin: 0 auto;
  background: white;
  border-radius: 30px;
  margin-top: 50px;
}

.contract_title_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
}

.day_title {
  font-size: 35px;
  font-weight: bold;
}

.day_sub_title {}

.contract_main_wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.contract_main_title {
  padding: 15px 0;
}

.contract_main {
  border: 2px solid #707070;
  border-right: none;
  border-left: none;
}

.contract_sub_title {
  padding: 10px 0;
  border-bottom: 1px solid #C1C1C1;
}

.contract_sub_title p {
  padding: 0 20px;
}

.f_section {
  padding: 20px;

}

.f_select {
  padding: 5px 15px;
  width: 30%;
}

.f_list {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.f_list p {
  width: 80px;
}

.main2 {
  border-top: none;
}
.date_wrap_input {
  padding: 5px 10px;
  text-align: center;
}
.name_input {
  border: 1px solid #707070;
  padding: 5px 10px;
  width: 30%;
  vertical-align: top;
}
.work_money {
  border: 1px solid #707070;
  padding: 5px 10px;
  width: 30%;
  vertical-align: top;
}
.name_input:focus {
  outline: none;
}
.work_money:focus {
  outline: none;
}

.number_input {
  width: 14.58%;
  padding: 5px 10px;
  text-align: center;
}

.number_input:focus {
  outline: none;
}

.number_input_wrap {
  width: calc(100% - 80px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.number2 {
  width: 8.8%;
  text-align: center;
}

.title2 {
  margin-bottom: 20px;
}

.contract_text {
  margin-bottom: 50px;
}

.right {
  display: flex;
  justify-content: flex-start;
  width: 350px;
  margin-bottom: 10px;
}
.right p {
  width: 100px;
}
.input_right {
  padding: 5px 10px;
  width: 100%;
}
.right_box {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-end;
  /* justify-content: flex-end; */
  margin-bottom: 10px;
}
.right2 {
  width: 100%;
  justify-content: space-between;
}
.right_inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.right_inner2 {
  display: flex;
  width: 350px;
}
#signature {
  border: 1px solid #000;
  /* width: 200px;
  height: 200px; */
}
#save {
  width: 300px;
  background: #A7C4FC;
  border-radius: 40px;
  font-size: 25px;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  box-shadow: inset 0 0 8px #360F03;
  margin: 50px auto;
  cursor: pointer;
}
.email_input {
    border: 1px solid #707070;
    padding: 5px 10px;
    width: 30%;
    vertical-align: top;

}
.email_input:focus{
  outline: none;
}
.overlay_loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.521);
  z-index: 9999999;
  display: none;
}
@media screen and (max-width : 700px) {
  .name_input,
  .email_input{
    width: 80%;
  }
  .right2 {
    flex-direction: column;
    gap: 10px;
    width: 350px;
  }
  .work_money {
    width: 80%;
  }
  .f_select {
    width: 80%;
  }
  .right_inner label {
    font-size: 14px;
  }

  .number_input {
    width: 45.5%;
  }

  .number2 {
    width: 27.5%;
  }
}

@media screen and (max-width : 400px) {
  .contract_main_wrap {
    font-size: 14px;
  }

  .f_list p {
    width: 60px;
  }

  .day_title {
    font-size: 33px;
  }

  .number2 {
    width: 60%;
  }

  .number_input_wrap {
    width: calc((100% - 60px));
  }
}