*{
  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;
}

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

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

}

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

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

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

  .login_title{
    width: 100%;
    color: white;
    font-size: 22px;
    text-align: center;
  }

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

  .log_inputarea{
    display: block;
    margin-top: 30px;
  }

  .log_inputarea div{
    width: 100%;
  }

  .log_inputarea input{
    width: 100%;
    height: 45px;
    margin: 10px 0 10px 0;
    background-color: rgb(156, 155, 155);
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .log_inputarea input::placeholder{
    font-family: 'NanumMyeongjo', serif;
    color: rgba(255, 255, 255, 0.541);
    font-size: 14px;
  }

  .log_inputarea input:focus{
    background-color: white;
    color: black;
  }

  .log_inputarea input:focus::placeholder{
    color: rgb(153, 153, 153);
  }

  .chk_find_area{
    display: flex;
    justify-content: space-between;
  }

  .chk_area{
    margin-top:10px;
    width: 100%;
  }

  .chk_area label{
    color: white;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
  }

  label{
    cursor: pointer;
  }

  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;
  }

  .find_area{
    width: 100%;
    display: block;
    justify-content: center;
    margin-top: 15px;
    text-align: right;
  }

  .find_id{
    border: none;
    border-right: 1px solid white;
    border-left: 1px solid white;
    padding: 0 8px 0 8px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }

  .find_id:hover, .find_pw:hover{
    color: rgb(165, 164, 164);
  }

  .login_btn_area{
    width: 100%;
    margin-top: 15px;
  }

  .login_btn{
    width: 100%;
    height: 45px;
    color: white;
    background: rgb(0, 0, 0);
    border: none;
    font-size: 14px;
    cursor: pointer;
  }

  .login_btn:hover{
    font-size: 16px;
    transition: 0.2s;
  }

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

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

