#popup-game-create-or-load {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(60rem, 90vw);
    flex-direction: column;
    max-height: calc(100vh - 1rem);
    max-width: 30rem;
    padding: 1rem;
    display:none;
}

#popup-game-create-or-load.visible {
    display: flex;
}

#game-creation-mode-start,
#game-creation-mode-load {
    padding: 2rem;
    font-size: 2rem;
    cursor: pointer;
}

#game-creation-mode-start:hover,
#game-creation-mode-load:hover {
    background-color: #2b818a;
}


#new-game-text,
#load-game-text {
    background-color: #143a3e;
    padding: 1rem;
}

#load-game-text>form {
    width: 100%;
}

#game-key-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#game-key-wrap>label {
    padding-right: 1rem;
}

#game-key-input {
    height: 2rem;
    font-size: 2rem;
    width: 10rem;
    text-transform:uppercase;
}

#new-game-text button,
#load-game-text button {
    width: calc(100% - 1rem);
    height: 3rem;
}

#load-game-error:empty {
    display:none;
}
#load-game-error {
    padding: 2rem;
    color: red;
}

#new-game-key {
    height: 4rem;
    border-radius: 0.25rem;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: white;
    background-color: #2b2b2b;
    padding: 1rem 0;
    font-family: Monospace, sans-serif;
}


#game-creation-background {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: black url('../images/webp/login-background_100.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    line-height: 100vh;
}
