body {
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

/* 드랍다운 버튼 숨김 */
select {
    -webkit-appearance: none;
    /* WebKit 브라우저에 대한 스타일링 */
    -moz-appearance: none;
    /* Firefox 브라우저에 대한 스타일링 */
    appearance: none;
    /* 표준 브라우저에 대한 스타일링 */
    padding-right: 25px;
    /* 오른쪽에 아이콘이나 기타 콘텐츠를 위한 여유 공간 제공 */

}

/* 드랍다운 버튼이나 스피너를 숨기기 위한 스타일링 */
select::-ms-expand {
    display: none;
}

button:active,
button:focus {
    outline: 0;
}


.hiddenScroll {
    -ms-overflow-style: none;
    /* 인터넷 익스플로러 */
    scrollbar-width: none;
    /* 파이어폭스 */
}

.hiddenScroll::-webkit-scrollbar {
    display: none;
    /* 크롬, 사파리, 오페라, 엣지 */
}

label {
    cursor: pointer;
}

:root {
    --mainColor: #A1238A;
    --mainColorOrange: #DC4405;
    --mainColorWhite: rgb(250, 250, 250);
    --mainColorDark: rgb(150, 150, 150);
    --mainColorBlack: rgba(0, 0, 0, 0.8);
}

input,
progress,
select,
option {
    accent-color: var(--mainColor);
}

#popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}

#popup #popupBg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(2px);
    /* 뒤의 내용에 blur 효과를 줍니다. (지원되는 경우) */
}

.bi-x {
    position: absolute;
    fill: #fff;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    z-index: 1;
    cursor: pointer;
}

#popup #popupInner {
    width: 100%;
    padding: 20px;
    max-width: 1420px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1;
    position: absolute;
}




textarea:focus,
input:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: var(--mainColor);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 1px var(--mainColor);
    outline: 0 none;
}

.btn:hover,
.btn:select,
.btn:active {
    border:0px;
   box-shadow: 0px 0px 0px 0px #fff;
}

#loginBT, #cancleBT, #agree, #disagree{
    box-shadow: 0px 0px 0px 0px #fff;
}

