:root {
  --gl-fnt: #0e0e0e;
  --bg-col: #e0e0e0;
  --bd-rds: 24px;
  --lb-col: #aaaaaa;
  --lb-col-dim: #dfdfdf;
  --lb-col-dim-hov: #d1d1d1;
}

body {
  background: var(--bg-col);
  user-select: none;
  user-zoom: none;
  -webkit-user-drag: none;
  font-family: 'Onest', 'Noto Sans SC';
}

h1 {
  color: var(--gl-fnt);
}

span {
  color: midnightblue;
}

input[type="text"],
input[type="password"] {
  text-align: center;
  font-size: 14px;
  color: var(--gl-fnt);
  background: var(--lb-col-dim);
  border: 1px solid var(--lb-col);
  border-radius: var(--bd-rds);
  padding: 10px;
  margin: 10px;
  width: 200px;
  height: 20px;
  -webkit-border-radius: var(--bd-rds);
  -moz-border-radius: var(--bd-rds);
  -ms-border-radius: var(--bd-rds);
  -o-border-radius: var(--bd-rds);
}

input[type="text"]:hover,
input[type="password"]:hover {
  background: var(--lb-col-dim-hov);
}

input[type="button"] {
  overflow: hidden;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: white;
  background: midnightblue;
  border: none;
  border-radius: var(--bd-rds);
  width: 120px;
  height: 36px;
  -webkit-border-radius: var(--bd-rds);
  -moz-border-radius: var(--bd-rds);
  -ms-border-radius: var(--bd-rds);
  -o-border-radius: var(--bd-rds);
}

input[type="button"]:hover {
  background: rgb(34, 34, 148);
}

.logo {
  margin: 0 auto;
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 8px whitesmoke);
  -webkit-filter: drop-shadow(0 0 8px whitesmoke);
}

.crypto {
  font-family: 'JetBrains Mono', 'Consolas', 'Menlo', 'Courier New', monospace;
}

input[type="button"].disabled {
  background: #666666;
  pointer-events: none;
}

#loginOverlay {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-col);
  z-index: 64;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* justify-content: space-between; */
  background-color: whitesmoke;
  border-radius: var(--bd-rds);
  max-width: 500px;
  width: 85%;
  height: 65vh;
  max-height: 555px;
  margin: 0 auto;
  scrollbar-width: none;
  overflow-x: hidden;
  box-shadow: 0px 16px var(--bd-rds) 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: var(--bd-rds);
  -moz-border-radius: var(--bd-rds);
  -ms-border-radius: var(--bd-rds);
  -o-border-radius: var(--bd-rds);
}

.box.large {
  display: block;
  max-width: 800px;
  max-height: 90%;
  height: 90vh;
  width: 90%;
  overflow: scroll;
}

.configInsertionInput {
  width: 80%;
  height: 24px;
  border: none;
  background-color: var(--bg-col);
  color: var(--txt-col);
  font-size: 18px;
  font-family: 'JetBrains Mono', 'Consolas', 'Menlo', 'Courier New', monospace;
  padding: 10px;
  margin: 0 auto;
  overflow-y: auto;
  resize: none;
}

#error-lens {
  color: darkred;
  font-size: 12px;
}

#copy-button {
  text-align: center;
  margin: 0 auto;
  display: block;
  color: midnightblue;
  font-size: 12px;
  padding-top: 5px;
}

#name-box {
  border-radius: 24px;
  height: auto;
  width: 50%;
  background-color: #0000000e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 24px 0;
  font-size: 36px;
  font-family: "华文中宋";
  text-align: center;
}