.login-form-container {
    margin-top: 3rem;
    width: 100%;
    max-width: 400px;
}

.login_button_wrapper {
    width: 100%;
}

.kakao_login_button {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    background-color: #fee500;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kakao_login_button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(254, 229, 0, 0.4);
}

.kakao_login_button:active {
    transform: scale(0.98);
}

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