body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #ebf0eb;

  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
}

.container {
  width: 650px;
  text-align: center;
}

p {
  color: #404f5e;
  font-size: 20px;
  margin: 0;
}

.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.card {
  background: white;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 0 2px 3px #c8d0d8;
  margin: 0 auto;
}

/* Modified design for verification text */
#verificationResult {
  font-size: 30px;
  font-weight: bold;
  color: #3498db;
  margin-top: 20px;
}

/* Checkmark design */
.checkmark {
  font-size: 100px;
  line-height: 120px;
  margin-left: -15px;
  color: #4caf50;
}

/* Cross design */
.cross {
  font-size: 100px;
  line-height: 120px;
  margin-left: -15px;
  color: #ff5733;
}

.icon {
  border-radius: 120px;
  height: 120px;
  width: 120px;
  background: #f8faf5;
  margin: 0 auto;
}

/* Hide the checkmark and cross initially */
.checkmark.hidden,
.cross.hidden {
  display: none;
}
