@font-face { font-family: LAMEBRAINSRegular; src: url('lamebrains-webfont.woff2'); } 

:root{
  --base-color: white;
  --text-color: #e0e0e062;
  --input-color: #00000062;
  --button-color: rgba(0, 255, 0, 0.295);
}

.bottomleft {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 18px;
} 

h1 {
  color: white;
  font-family: LAMEBRAINSRegular;
  font-size: 100px;
}

a {
  text-decoration: none;
  font-size: 20px;
}

li {
  list-style: none;
}


#container {
  display: none;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    z-index: -2;
}

.content {
  height: 50px;
  text-align: center;
  margin: auto;
  width: max(40%, 600px);
}

html {
   text-align: center;
}

body {
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
 
.wrapper {
  box-sizing: border-box;
  height: 100vh;
  width: max(40%, 600px);
  padding: 10px;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.wrapper2 {
  box-sizing: border-box;
  height: 100vh;
  width: max(40%, 600px);
  padding: 10px;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

form {
  width: min(400px, 100%);
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

form input{
  box-sizing: border-box;
  flex-grow: 1;
  min-width: 0;
  height: 24px;
  font-size: 14;
  font: inherit;
  border: 2px solid var(--input-color);
  transition: 150ms ease;
  background-color: var(--input-color)
}

form input:focus{
  outline: none;
  border-color: var(--text-color);
}
div:has(input:focus) > label{
  background-color: var(--text-color);
}
form input::placeholder{
  color: var(--text-color);
}

form button{
  margin-top: 10px;
  border: none;
  padding: .85em 4em;
  background-color: var(--button-color);
  color: var(--base-color);
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  height: 50px;
}
form button:hover{
  background-color: var(--text-color);
}
form button:focus{
  outline: none;
  background-color: var(--text-color);
}

form div.incorrect input{
  border-color: #f06272;
}

.switch {
  border: none;
  background: none;
  text-decoration: underline;
  height: 20px;
}

form .switch:hover{
  background: none;
  border: none;
}

form .switch:focus{
  background: none;
  border: none;
}

a {
  color: var(--input-color);
}
