.login-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.login-popup-modal__content {
    background: white;
    width: auto;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-popup-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}
.login-popup-modal__header img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}
.login-popup-modal__header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.login-popup-modal__body {
    padding: 16px;
}
.login-popup-modal__footer {
    padding: 16px;
    display: flex;
    justify-content: center;
}
.login-popup-modal__button {
    background-color: #5697D7;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
