
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.securityCheck {
  width: 520px;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow:
    0 0 20px rgba(255,255,255,.04),
    0 0 50px rgba(0,150,255,.08);
}

.scContainer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.wait {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .5px;
}

.perform {
  color: #cfcfcf;
  font-size: 1.05rem;
  font-weight: 500;
}

.msg {
  color: #8d8d8d;
  font-size: .95rem;
  line-height: 1.7;
}

.veristatus {
  color: #b5b9b6;
  font-size: .95rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .5s ease;
}
.veristatus.ALo {
  color: green;
  opacity: 1;
}

.rspd {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.95rem;
}

.loading {
  display: flex;
  gap: 4px;
}

.loading span {
  width: 6px;
  height: 6px;
  background: #e6e8eb;
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

.loading span:nth-child(2) {
  animation-delay: .2s;
}

.loading span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: .4;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.wait {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wait::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid #2d2d2d;
  border-top: 3px solid #2ea0ff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


