.accountAuth {
  margin: 144px auto;
  padding: 44px 36px;
  min-width: 35%;
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--lighter-background-color);
  box-shadow: 0px 0px 3px 1px grey;
  border: 8px solid rgb(0, 89, 0);
}

.authForm {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  width: 75%;
}

.authForm button {
  margin-top: 20px;
}

.authForm div {
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.accountHeader {
  margin-top: 0px;
  margin-bottom: 60px;
  font-size: 36px;
}

.gameLinkContainer {
  border: 1px solid var(--dark-border);
  text-decoration: none;
  border-radius: 4px;
  width: 420px;
  height: auto;
  padding: 12px;
  cursor: pointer;
  margin: 4px 0;
  background: var(--lighter-background-color);
  transition: background-color 0.2s;
}
.gameLinkContainer:hover {
  background-color: var(--darker-background-color);
}
.gameLink {
  color: var(--text-color);
  font-size: 32px;
}

.createLink {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  color: var(--lighter-background-color);
  font-weight: bold;
  background-color: #666;
  transition: background-color 0.2s;
}
.createLink:hover {
  background-color: #444;
  transition: background-color 0.2s;
}
.createLinkText {
  color: var(--lighter-background-color);
  font-size: 32px;
}
.createIcon {
  height: 80%;
  max-height: 42px;
  width: auto;
}

.newGameContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  width: 90%;
}
.newGameSubContainer {
  /* width: 50%; */
  display: flex;
  flex-direction: column;
}

.newGameColumn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.newGameTextBox {
  min-width: 500px;
  width: 80%;
  height: 50vh;
  font-size: 20px;
  margin: 16px 0;
}
/* .newGameContainer {
  width: 256px;
} */

.gameName {
  width: 100%;
  font-size: 24px;
}
.gameNameLabel {
  font-size: 24px;
  margin-right: 6px;
  width: 50%;
}

.gameList {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.game {
  border: 1px solid black;
  margin: 4px;
  height: 60px;
  width: 280px;
}
.monospace {
  font-family: "Courier New", Courier, monospace;
}
