html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #e5e5e5;
  background: #444;
  font-family: var(--font-select, Verdana, Helvetica, sans-serif);
  -webkit-font-smoothing: antialiased;
}

#container {
  position: fixed;
  width: 480px;
  height: 260px;
  top: calc(50% - 130px);
  left: calc(50% - 240px);
  border-radius: 8px; /* curve-border */
  background: var(--main-accent, rgba(118, 150, 188, 0.8));
  border: 1px solid var(--gray-bg);
  animation: 1s linear 0s fadeIn;
  -moz-animation: 1s linear 0s fadeIn;
  -webkit-animation: 1s linear 0s fadeIn;
}

form {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
}

label,
input {
  display: inline-block;
  box-sizing: border-box;
  padding: 8px;
  margin: 0 0 18px;
  font-size: 20px;
}

label {
  width: 35%;
}

span {
  cursor: pointer;
  text-align: left;
  display: inline-block;
}

input:not(.showpasswordcheckbox) {
  width: 65%;
  border: 2px solid rgba(25, 25, 25, 0.5); /* gray-border */
  border-radius: 8px; /* curve-border */
}

input[type='checkbox'] {
  transform: scale(1.5);
  margin: 0 12px 0 0;
  cursor: pointer;
}

.showpasswordlabel {
  width: 65%;
  margin: -12px 0 24px 35%;
}

#lower {
  width: 100%;
  text-align: right;
  border-top: 2px solid var(--gray-border);
}

#lower input {
  cursor: pointer;
  margin: 0;
  background-color: rgb(228, 228, 228); /* gray-bg */
}

#lower input:hover {
  background-color: rgb(206, 206, 206); /* gray-hover */
}
