body {
  padding: 20px;
  background-color: #4b1558;
  background-image: url("pattern-1337.svg");
  background-size: auto 100%;
  background-repeat: inherit;
  text-align: center;
  padding: 30px 40px;
  position: center;
}
/* pc animation */

@media screen and (min-width: 690px) {
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 1);
    outline: solid rgba(0,0,0, 0.05);
    border-radius: 10px;
    max-width: 800px;
    min-width: auto;
    width: 96%;
    height: auto;
    margin:auto;
    margin-top: -30px;
    background: linear-gradient(-45deg, rgba(3, 29, 36, 0.527), rgba(86, 24, 117, 0.596), rgba(134, 13, 13, 0.514), rgba(47,18,62,0.3));
    background-size: 400% 400%;
    animation: gradient 4s ease infinite; 
    backdrop-filter: blur(15px);
  }
}
/* mobile no-animation */

@media screen and (max-width: 690px) {
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 1);
    outline: solid rgba(0,0,0, 0.05);
    border-radius: 10px;
    max-width: 800px;
    min-width: auto;
    width: 96%;
    height: auto;
    margin:auto;
    margin-top: -30px;
    background: linear-gradient(-45deg, rgba(3, 29, 36, 0.527), rgba(86, 24, 117, 0.596), rgba(134, 13, 13, 0.514), rgba(47,18,62,0.3));
    background-size: 400% 400%;
    backdrop-filter: blur(15px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
h1 {
    background: -webkit-linear-gradient(#eee, #a3a2a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    width: auto;
    margin-left: 3%;
    margin-right: 3%;
    line-height: 60px;
    text-shadow:10px 10px 10px #0000003d;
}
h2 {
  box-shadow: inset 0 0 0 0 #54b3d6;
  border-radius: 25px;
  color: rgb(255, 255, 255);
  margin: 0 -.25rem;
  padding: 0 .25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
h2:hover {
  box-shadow: inset 200px 0 0 0 black;
  border-radius: 25px;
  color: white;
}

/* language selector */


.dropbtn {
  background-color: #4b1558;
  user-select: none;
  outline: solid #00000018;
  box-shadow: 0 1px 28px 0 rgba(0, 0, 0, 0.37);
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  user-select: none;
  background-color: #4e002185;
  width: 103px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(51, 0, 0, 0.2);
  z-index: 1;
  backdrop-filter: blur(5px);
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.479);
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #1a0020cb}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #632759;
}


/* text, password, button */

        
body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 50px;
  user-select: none;
  font-size: 40px;
}
    h2 {
  margin-top: 2px;
  user-select: none;
  margin-bottom: 2px;
  font-size: 15px;
}
    h5 {
   user-select: none;
   color: rgba(255, 255, 255, 0.774);
   font-size: 15px;
}

button {
  margin-top: 20px;
  padding: 5px 10px;
  border-radius: 20px;
  border: none;
  background-color: #55007d;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  outline: solid #00000013;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.226);
}

button:hover {
  background-color: #ffffff;
}

#password {
  margin-top: 30px;
  text-align: center;
  font-size: 24px;
  padding: 10px;
  max-width: 200px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #00000057;
  background: radial-gradient(white, rgb(179, 177, 179));
  word-break: break-all;
  box-shadow: inset 0 0 10px #00000088;
}
#passwordLength {
  min-width: auto;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #00000057;
  box-shadow: inset 0 0 10px #00000088;
}
