main {
    height: 100dvh;
    background: var(--k-page-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 배경 장식 블러(우상단/좌하단) */
main::before,
main::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}

main::before {
    width: 39dvw;
    height: 39dvw;
    top: -12dvw;
    right: -11dvw;
    background: var(--k-blob-orange);
}

main::after {
    width: 27dvw;
    height: 27dvw;
    bottom: -6dvw;
    left: -12dvw;
    background: var(--k-blob-blue);
}

#login_cont {
    position: relative;
    z-index: 1;
    min-height: 30dvh;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.wrap_title {
    font-size: clamp(30px, 4dvw, 40px);
    font-weight: 700;
    /* color: var(--k-text-black); */
    color: #222;
    text-align: center;
}

.edk_input {
    /* border-color: var(--k-primary); */
}

.edk_input.input_border {
    /* border-color: var(--k-primary); */
    border-radius: 8px;
    text-align: center;
}

.login_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 12px;
    font-size: 18px;
    background-color: #ff6d01;
    color: #fff;
    border-radius: 8px;
    margin-top: 16px;
}

.edk_keypad {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    visibility: hidden;
    transition: visibility 0.5s;
}


.edk_keypad.active {
    visibility: visible;
}

.edk_keypad .dim {
    width: 100%;
    height: 100%;
}

.edk_keypad .pad_wrap {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #eee;
    /* border: 1px solid #e9e9e9; */
    border-radius: 30px 30px 0 0;
    height: 40dvh;
    box-shadow: 0px 16px 36px 0px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-rows:
        clamp(60px, 5dvh, 80px) minmax(0, 1fr);
    transition: bottom 0.3s;
}

.edk_keypad.active .pad_wrap {
    bottom: 0;
}

.edk_keypad .pad_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

.edk_keypad .pad_head .close_btn {
    margin-left: auto;
    font-size: 20px;
    color: #222;
}

.edk_keypad .pad_body {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 30px 24px;
}

.edk_keypad .key.num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 32px) / 3);
    /* border: 1px solid #CBD0D7; */
    background-color: #fff;
    border-radius: 16px;
    font-size: clamp(30px, 4dvw, 30px);
    font-weight: 700;
    color: #222;
}