button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
}

.auth_login_center {
    box-sizing: border-box;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
}

.auth_login_panel {
    box-sizing: border-box;
    width: 100%;
    max-width: 520px;
    padding: 48px 40px;
    /*border: 1px solid #e5e8ec;*/
    border-radius: 14px;
    background: #fff;
    text-align: center;
    /*box-shadow: 0 8px 28px rgba(17, 32, 66, 0.08);*/
}

.auth_login_panel h2 {
    margin: 0 0 16px;
    color: #112042;
    font-size: 24px;
    line-height: 1.4;
}

.auth_login_description {
    margin: 40px 0 50px;
    color: #555f6d;
    font-size: 14px;
    line-height: 1.8;
}

.auth_login_note {
    margin: 10px 0 26px;
    color: #8a929d;
    font-size: 12px;
    line-height: 1.6;
}

.auth_login_center .kakao_login_button {
    max-width: 360px;
    margin: 0;
    cursor: pointer;
}

@media screen and (max-width: 580px) {
    .auth_login_center {
        min-height: 360px;
        padding: 25px 15px;
    }

    .auth_login_panel {
        padding: 36px 20px;
    }

    .auth_login_panel h2 {
        font-size: 20px;
    }

    .auth_login_pc_break {
        display: none;
    }
}

.login_wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 45px;
}

.login_top {
    display: flex;
    flex: 2.25;
    justify-content: center;
}
.login_top img {
    object-fit: contain;
}

.login_button_wrapper {
    width: 100%;
    flex: 1;
}

.kakao_login_button {
    width: 100%;
    height: 56px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fee500;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    outline: none;
}
.kakao_login_button:active, .kakao_login_snb_button:active {
    transform: scale(0.95);
}

.kakao_login_button img {
    width: 310px;
    height: 26px;
    object-fit: contain;
}

.kakao_login_snb_button {
    width: 90%;
    height: 45px;
    margin-top: 10px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fee500;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    outline: none;
}
.kakao_login_snb_button img {
    width: 190px;
    height: 22px;
    object-fit: cover;
    object-position: center center;
}

.login_bottom {
    height: 200px;
    background-color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
