
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
html {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  font-family: 'Noto Sans KR', sans-serif !important;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

div {
  z-index: 1000;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F2EEEB;
}

.logo-box {
  width: 406px;
  margin-top: 0px;
  margin-bottom: 36px;
  display: flex;
}

.logo-box img {
  width: 310px;
  margin: auto;
}

.container {
  width: 406px;
  height: 380px;
  border: #ced0d4 1px solid;
  background-color: #fff;
  padding: 31px
}

.container .container-tab {
  width: 100%;
  height: 48px;
  display: flex;
  position: relative;
  font-size: 16px;
  margin-bottom: 22px;
}
.container .container-tab input[type='radio'],
.container .container-tab .input[type='radio'] {
  display: none;
}

.container .container-tab input[type='radio']:checked + .tab-selector,
.container .container-tab input[type='radio']:checked + .tab-selector {
  background-color: #fff;
  border-top: unset;
  border-left: #ebecee 1px solid;
  border-right: #ebecee 1px solid;
  border-bottom: unset;
}

.container .container-tab .tab-selector {
  width: 104px;
  height: 100%;
  flex: 1 0 auto;
  position: relative;
  background-color: #e2e2e3;
  color: #8d8d8e;
  text-align: center;
  float: left;
  border-top: #e0e1e4 1px solid;
  border-left: #e0e1e4 1px solid;
  border-right: #e0e1e4 1px solid;
  border-bottom: #ebecee 1px solid;
}
.container .container-tab .tab-selector:hover {
  cursor: pointer;
}

.container .container-tab input[type='radio']:checked + .tab-selector::before {
  content: '';
  height: 6px;
  width: 104px;
  position: absolute;
  background-color: #ec8211;
  left: 0px;
}

.container .container-tab .tab-selector .tab-title {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

.container .container-tab .blank-box {
  width: 100%;
  border-bottom: #ebecee 1px solid;
}

.form-box .input-box {
  width: 100%;
  height: 49px;
  margin-bottom: 16px;
  position: relative;
}

.form-box .input-box:before {
  width: 20px;
  height: 22px;
  position: absolute;
  left: 23px;
  top: 13px;
  content: "";
}

.form-box .id-box:before {
  background-image: url(/static/img/user_icon.png);
  background-size: 20px 22px;
}

.form-box .password-box:before {
  background-image: url(/static/img/password_icon.png);
  background-size: 20px 22px;
}

.form-box .input-box input {
  width: 100%;
  height: 100%;
  padding-left: 72px;
  font-size: 20px;
  font-weight: 500;
  border: #c0c2c8 1px solid;
  color: #666;
}

.form-box .input-box input::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: #8d8d8e;
}

.form-box .input-box input:focus {
  outline: none !important;
  border: #abadb3 1px solid;
  box-shadow: 0 0 4px #999;
}

.form-box .select-box {
  width: 100%;
  margin-bottom: 16px;
}

.form-box .select-box select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 34px;
  font-size: 18px;
  font-weight: 500;
  border: #c0c2c8 1px solid;
  border-radius: 4px;
  color: #666;
  padding: 2px 8px;
  line-height: 30px;
  background-color: #eee;
}

.form-box .select-box select option:hover {
  background-color: #000;
  color: #fff;
}


.login-btn {
  width: 100%;
  height: 43px;
  background-color: #FC993B;
  border: #f1a14c 1px solid;
  font-size: 18px;
  color: #FFFFFF;
  padding: 4px;
  font-weight: 600;
  border-radius: 5px;
}


.error-message {
  color: #e33d3d;
  font-size: 14px;
  font-weight: 400;
}


.hide {
  display: none !important;
}