@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  overflow: auto;
}
.container .container_child {
  width: 100%;
  min-height: 100vh;
}

.header {
  width: 100%;
  height: 70px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-style: normal;
  padding: 10px 60px;
}
@media only screen and (max-width: 1023px) {
  .header {
    padding: 10px 20px;
  }
}
.header .company_name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #111111;
}
@media only screen and (max-width: 1023px) {
  .header .company_name {
    font-size: 12px;
    line-height: 14px;
  }
}
.header .company_logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1023px) {
  .header .company_logo {
    width: 18px;
    height: 18px;
  }
}

.form {
  width: 100%;
  min-height: calc(100vh - 70px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .form {
    min-height: 600px;
  }
}
.form .form_container {
  width: 560px;
}
@media only screen and (max-width: 1023px) {
  .form .form_container {
    width: 90%;
  }
}
.form .form_container .form_title {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-style: normal;
  width: 100%;
  color: #111111;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .form_title {
    font-size: 20px;
    line-height: 25px;
  }
}
.form .form_container .input_container {
  margin-top: 20px;
}
.form .form_container .input_container .label_container {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.78px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .input_container .label_container {
    font-size: 14px;
    line-height: 16px;
  }
}
.form .form_container .input_container .label_container span {
  color: #D30000;
}
.form .form_container .input_container input {
  outline: none;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  height: 35px;
  padding: 0px 10px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1490196078);
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: #707070;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .input_container input {
    font-size: 12px;
    line-height: 14px;
    height: 31px;
  }
}
.form .form_container .input_container textarea {
  outline: none;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  height: 300px;
  padding: 10px 10px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1490196078);
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: #707070;
  resize: none;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .input_container textarea {
    font-size: 12px;
    line-height: 14px;
    height: 31px;
  }
}
.form .form_container .submit_btn {
  width: 100%;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  height: 54px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #111111;
  margin-top: 20px;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .submit_btn {
    font-size: 14px;
    line-height: 16px;
    height: 49px;
  }
}
.form .form_container .forgot_password {
  display: flex;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
}
@media only screen and (max-width: 1023px) {
  .form .form_container .forgot_password {
    font-size: 12px;
    line-height: 14px;
  }
}
.form .form_container .forgot_password .text {
  color: #707070;
  margin-right: 10px;
}
.form .form_container .forgot_password a {
  color: #0052D9;
  text-decoration: none;
}

.div-back {
  width: 100%;
  padding: 0px 60px;
}
@media only screen and (max-width: 1023px) {
  .div-back {
    padding: 0px 20px;
  }
}/*# sourceMappingURL=index.css.map */