* {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system;
}

body {
  text-align: center;
  color: white;
  background-image: url("../../background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-color: rgb(32, 32, 32);
}

h2 { margin-bottom: 40px; }

input, button#login, #icon {
  padding: 10px;
  border: 1px solid gray;
  border-radius: 6px;
}

input {
  width: 40%;
  height: 17px;
  margin-bottom: 10px;
  outline: none;
  border-radius: 0px 6px 6px 0px;
  background-color: rgb(255, 255, 255);
  border: none;
}

button {
  width: 120px;
  padding: 10px;
  outline: none;
  border: none;
  border-radius: 5px;
  transition: all 200ms linear;
}

button:hover {
  cursor: pointer;
  transition: all 2seg linear;
  transform: scale(1.1);
}

#inputIcon {
  display: flex;
  width: 100%;
  justify-content: center;
  transition: all 200ms linear;
}

#icon {
  height: 17px;
  border-radius: 6px 0px 0px 6px;
  background-color: white;
  color: black;
  border: none;
  border-right: 1px solid gray;
}

#inputIcon:has(input:hover) {
  transition: all 2seg linear;
  transform: scale(1.02);
}

div.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  /* filter: blur(10px); */
}

div#system {
  font-size: 28px;
  margin-bottom: 30vh;
}

.conteiner {
  width: 40vw;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  justify-content: center;
  filter: blur(90px);
  border: 1px solid gray;
  border-radius: 15px;
  transition: all 250ms 150ms linear;
}

.conteiner:hover { filter: none; }

a, p {
  text-decoration: none;
  color: white;
  text-shadow: 2px 2px 4px black;
}

#oauth {
  position: absolute;
  right: 20px;
  top: 20px;
}

.qrcode {
  width: 50px;
  height: 50px;
  align-content: center;
  border-radius: 50%;
  background-color: #5865F2;
  transition: all 200ms 200ms linear;
}

.qrcode img {
  width: 35px;
  height: 35px;
}

.qrcode:hover { transform: scale(1.1); }

img {
  user-select: none;
}

p { padding-top: 20px; }

input::placeholder { color: black; }

dialog {
  position: absolute;
  filter: blur(0px);
  width: 30%;
  height: 20%;
  top: 30%;
  left: 35%;
  background-color: rgb(32, 32, 32);
  border-radius: 10px;
  border: 2px solid black;
  align-content: center;
  justify-items: center;
  opacity: 0.9;
}

#ajust {
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.807);
}

#ajust:hover { background-color: white; }

#randomCode {
  width: 60%;
  border-radius: 6px;
}

#modClose { width: auto; }