*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'NanumMyeongjo', serif;

  }

  *::selection{
    background-color: rgba(128, 128, 128, 0.349);
  }

  ::-webkit-scrollbar{
    width: 9px !important;
    height: 9px !important;
  }

  ::-webkit-scrollbar-thumb{
    background-color: #8f8f8f78!important;
    border-radius: 10px !important;
  }

  ::-webkit-scrollbar-track{
    background-color: transparent!important;
    border-radius: 10px !important;
  }

  html{
    width: 100%;
    height: 100%;
  }

  body{
    width: 100%;
    height: 100%;
    background-color: rgb(26, 26, 26);
    margin: auto;
  }

  a{
    text-decoration: none;
    color: black;
  }

  button{
    font-family: 'NanumMyeongjo', serif;
}

input[type=checkbox]:focus {
    outline: 1px solid rgba(0, 0, 0, 0.2);
}

input[type=checkbox] {
    background-color: #393a3a;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 14px;
    height: 14px;
    position: relative;
    top: 5px;
}

input[type=checkbox]:checked {
    background-color: #5f5f5f;
    background: #5f5f5f
    url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==")
    2px 2px no-repeat;
}

/* logo area */
.portal_main_logo{
  display: block;
  text-align: center;
  padding-top: 50px;
}

.portal_logo{
  max-width: 80px;
  max-height: 80px;
  width: 100%;

}

  /* 로그인, 회원가입 페이지 시작 */
.regi_page{
    width: 100%;
    font-family: 'NanumMyeongjo', serif;
    padding: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.regi_box{
  max-width: 500px;
  width: 100%;
  border: 1px white solid;
  margin: auto 10px 20px 10px;
}

.regi_area{
  margin: 30px auto;
  width: 90%;
}

.regi_title{
    width: 100%;
    color: white;
    font-size: 22px;
    margin-top: 10px;
    text-align: center;
}

.regi_text{
    width: 100%;
    color: white;
    margin-top: 20px;

}

.regi_text div:nth-child(1){
  text-align: center;
  margin-bottom: 20px;
}

.regi_text div:nth-child(2){
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.regi_btn_area{
    width: 100%;
    margin-top: 20px;
}

.regi_btn{
    width: 100%;
    height: 90px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.regi_btn:hover{
    background-color: black;
    border: none;
    transition: 0.5s;
}

.banner{
  margin-top: 20px;
  width: 100%;
  max-height: 250px;
  text-align: center;
}

.banner a img{
  max-width: 100%;
  max-height: 100%;
}


