@charset "UTF-8";
/*     반응형 화면 크기     */
/*     폰트 모음     */
@font-face {
  font-family: "KimjungchulGothic-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: Pretendard;
  font-weight: 400;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  display: none;
}

/* fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  position: relative;
  animation: fadeInUp 1s;
}

/*     때깔 모음     */
/*     기본 디자인     */
a {
  text-decoration: none;
  color: black;
}

.container {
  display: flex;
  justify-content: center;
}
.container .box {
  background: white;
  width: 100%;
  margin-top: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px 0px #d9d9d9;
  max-width: 450px;
  padding: 40px 50px;
  margin-bottom: 20px;
}
.container .box p {
  margin: 10px 0 7px 0;
}
.container .box .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.container .box input {
  outline: none;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  background-color: #F4F5F5;
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
.container .box .selectbox .selectbox-input {
  background-color: #F4F5F5;
}
.container .box .btn-wrap {
  margin-top: 30px;
}
.container .box .btn-wrap .register-btn {
  background: #393939;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  width: 100%;
  font-weight: 300;
  transition: all 0.5s;
}
.container .box .btn-wrap .register-btn:hover {
  background: linear-gradient(to bottom right, #7acaf1, #35b0e6);
  transition: all 0.5s;
}/*# sourceMappingURL=register.css.map */