.login-modal {
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.login-frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1em;
    background-color: white;
    padding: 2em;
    border: 1px solid black;
}

.login-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}