body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: 'Pretendard', sans-serif;
    position: relative;
}
textarea, input, button { /* 폼 요소에 명시적으로 폰트 적용 */
    font-family: inherit; /* 상위 요소로부터 폰트 패밀리 상속 */
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.loader_dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*opacity: 0.35;*/
    /*background-color: #111;*/
    z-index: 200; /* 팝업 레이어보다 낮은 z-index를 가지도록 설정 */
}
.loader_dim2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*opacity: 0.35;*/
    /*background-color: #111;*/
    z-index: 900; /* 팝업 레이어보다 낮은 z-index를 가지도록 설정 */
}
/*.loader_container {*/
/*    position: fixed; !* 또는 absolute; 화면 전체에 대해서 중앙 정렬을 원하면 fixed 사용 *!*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
.loader {
    width: 150px;
    height: 150px;
    z-index: 999;
}
.loader2 {
    width: 150px;
    height: 150px;
    z-index: 999;
}
.loader_spinner {
    border: 20px solid #f3f3f3; /* Light grey background */
    border-top: 20px solid #3498db; /* Blue foreground */
    border-radius: 50%;
    width: 200px;
    height: 200px;
    animation: spin 1s linear infinite;
}

.main_dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    background-color: #111;
    z-index: 600; /* 팝업 레이어보다 낮은 z-index를 가지도록 설정 */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wrapper {
    flex: 1;
}
.font_bold {
    font-weight: bold;
}
.bold-text {
    font-weight: bold !important;
}
.hover-effect {
    color: #2d91fe !important;
}

.main {
    width: 100%;
    min-height: 919px;
    display: flex;
    flex-direction: row;

}
.left_sidebar {
    width: 76px;
    height: 100%;
    background-color: #EDEDF1;
}

.sidebar_menu_button {
    margin-top: 40px;
    margin-left: 24px;
    width: 24px;
    height: 24px;
}

.sidebar_list {
    margin-top: 64px;
    margin-left: 17px;
}
.sidebar_list_item {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: var(--SizeUnit-8, 8px);
}

.sidebar_list_item:hover {
    background-color: #D8D9DF;
}
.sidebar_list_item_image {
    padding-left: 8px;
    width: 24px;
    height: 24px;
}

.sidebar_list_item_text {
    margin-left: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.login_parent_area {
    width: 100%;
    min-height: 919px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login_area {
    width: 596px;
    height: 356px;
}
.login_title {
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    color: #25252C;
}
.email_title, .password_title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    color: #25252C;
}
.email_edit, .password_edit {
    margin-top: 8px;
    width: 596px;
    height: 50px;
    display: flex;
    padding: var(--SizeUnit-16, 16px);
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: var(--SizeUnit-8, 8px);
    border: 1px solid var(--Gray-200, #D8D9DF);
    background: #ffffff;
}
.password_area {
    position: relative;
}
.password_image {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 21.45px;
    height: 15px;
}
.login_button {
    margin-top: 32px;
    width: 596px;
    height: 50px;
    border-radius: var(--SizeUnit-8, 8px);
    background: var(--Blue-600, #2D55E3);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: white;
}