@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
  background-color: #090909;
  /* font-family: "Roboto Condensed", sans-serif; */
  font-family: 'Inter, sans-serif';
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.notification {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#linkCodeBlock {
  position: relative;
}

#copyMessage {
  color: rgb(255, 255, 255);
  /* overflow-x: 10; */
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: -50px;
  background-color: none;
}

.box {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#box {
  display: none;
}

#qrCode {
  border: 5px solid black;
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  scale: 0.8;
  width: 255px;
  margin: auto;
}

.logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#qrBlock {
  padding: 0px;
  margin: 0px;
}

#timer {
  font-size: large;
  padding-bottom: 30px;
}

#linkCode {
  color: white;
  font-size: 6vmin;
  margin-top: 25px;
  letter-spacing: 10px;
  border: 1px solid white;
  border-radius: 20px;
  padding: 10px;
  font-weight: 500;
  transition: color ease-in-out 0.3s;
}

#linkCode:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}


#reloadBtn {
  border: 1px solid white;
  border-radius: 10px;
  margin-top: 10px;
  padding: 10px;
  color: white;
  width: 30vmin;
  transition: ease-in-out 300ms;
  font-size: large;

  &:hover {
    background-color: white;
    color: black;
  }
}

.recomendation {
  color: white;
  font-size: small;
}

.verification{
  color: white;
  margin: 15px;
}

#verifyBlock{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 2px solid #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 0;
  background: #FF3D00;
  width: 3px;
  height: 24px;
  transform: translateX(-50%);
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 