@charset "UTF-8";
/* font reset */
@font-face {
  font-family: 'NotoSans';
  src: url("../fonts/NotoSansKR-Thin.otf") format("otf");
  font-weight: 100;
}

@font-face {
  font-family: 'NotoSans';
  src: url("../fonts/NotoSansKR-Light.otf") format("otf");
  font-weight: 300;
}

@font-face {
  font-family: 'NotoSans';
  font-weight: 400;
  src: url("../fonts/NotoSansKR-Regular.otf") format("otf");
}

@font-face {
  font-family: 'NotoSans';
  font-weight: 500;
  src: url("../fonts/NotoSansKR-Medium.otf") format("otf");
}

@font-face {
  font-family: 'NotoSans';
  font-weight: 700;
  src: url("../fonts/NotoSansKR-Bold.otf") format("otf");
}

@font-face {
  font-family: 'NotoSans';
  font-weight: 900;
  src: url("../fonts/NotoSansKR-Black.otf") format("otf");
}

/* var */
@media (max-width: 480px) {
  .pcOnly {
    display: none;
  }
}

@media (min-width: 481px) {
  .mobileOnly {
    display: none;
  }
}

/* reset */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  color: #111;
  font-size: 14px;
  -webkit-text-size-adjust: none;
  word-break: keep-all;
}

main {
  height: calc(100% - 70px);
}

@media (max-width: 480px) {
  main {
    height: auto;
  }
}

strong {
  font-weight: bold;
}


footer {
  margin-top: auto !important;
}


.register-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 995px;
  height: 773px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  top: 35px;
  left: calc(50% - 498px);
  top: calc(50% - 345px);
}

@media (max-width: 480px) {
  .register-container {
    left: 0;
    top: 0;
    width: 100%;
    height: 900px;
    margin: 50px 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.register-container .logo {
  width: 280px;
  height: 66px;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .register-container .logo {
    width: 180px;
    height: 42px;
    margin-bottom: 8px;
  }
}

.register-container .description {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .register-container .description {
    font-size: 12px;
    line-height: 16px;
  }
}

.register-container .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .register-container .form {
    width: 320px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.register-container .form .checkBoxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.register-container .form .checkBoxes img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.register-container .form .checkBoxes span {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #090C2B;
}

.register-container .form .checkBoxes .type {
  margin-right: 30px;
}

.register-container .form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 790px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .register-container .form .row {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
}

.register-container .form input {
  width: 380px;
  height: 50px;
  border: 1px solid #B9B9FF;
  border-radius: 10px;
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #090C2B;
  padding: 14px;
}

@media (max-width: 480px) {
  .register-container .form input {
    width: 320px;
    height: 50px;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}

.register-container .form .save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.register-container .form .save img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.register-container .form .save .agree {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}

@media (max-width: 480px) {
  .register-container .form .save .agree {
    font-size: 12px;
    line-height: 16px;
  }
}

.register-container .recaptcha {
  width: 250px;
  height: 68px;
  margin-bottom: 40px;
  background: url("../images/robot.png") no-repeat;
  background-size: 100%;
}

@media (max-width: 480px) {
  .register-container .recaptcha {
    margin-bottom: 30px;
  }
}

.register-container .signUp {
  width: 300px;
  height: 50px;
  background: #434A90;
  border-radius: 100px;
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .register-container .signUp {
    width: 208px;
    height: 44px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
  }
}

.register-container .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.register-container .links a {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}

@media (max-width: 480px) {
  .register-container .links a {
    font-size: 12px;
    line-height: 16px;
  }
}

.register-container .links .forgot {
  margin-right: 30px;
}
