* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto";
  font-weight: 100;
}

.box input[type=password] {
  height: 50px;
  border: 1px solid #00bebe;
  padding: 0 10px;
  background: transparent;
}
.box input[type=password]:hover {
  box-shadow: 0 0 8px #00bebe inset, 0 0 8px #00bebe;
  border: 1px solid #00dcdc;
}
.box input[type=password]:focus {
  box-shadow: 0 0 20px #00dcdc inset, 0 0 10px #00dcdc, 0 0 20px white;
  border: 1px solid #00dcdc;
  background: #00dcdc;
  color: #212121;
}

.box input[type=submit] {
  overflow: hidden;
  position: relative;
  min-width: 20%;
  height: 50px;
  color: white; 
  border: 1px solid #00bebe;
  background: rgba(0, 190, 190, 0.2);
}


.box input:hover [type=submit] {
  box-shadow: 0 0 8px #00bebe inset, 0 0 8px #00bebe;
  border: 1px solid #00dcdc;
  color: #00dcdc;
  background: rgba(0, 220, 220, 0.3);
}

body {
  font-size: 18px;
  color: hsla(210deg, 100%, 100%, 1);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
position: relative!important;
    margin-top: 50px;
    min-width: 50vw;
    z-index: 9999;
   
}

@media only screen and (max-width: 600px) {
form {
  margin: auto;
  margin-top:50px;
  z-index: 9999;
}}

.box {
  position: absolute;
  top: 50%; right: 50%;
  transform: translate(50%,-50%);
  text-align: center;
  
   -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  outline: none;

	
}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.9em;
  font-size: clamp(1em, 5vw, 4em);
  animation: breath 10000ms ease-in-out infinite alternate;
}
h1 > .last {
  letter-spacing: 0;
}

@keyframes breath {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: hsla(240deg, 20%, 20%, 1);
}