.account-confirm h1 {
  font-weight: 700;
  font-size: 60px;
  font-family: "DINBold";
}

.account-confirm p {
  font-family: 'DINRegular';
}

@keyframes draw {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }

  to {
    fill: #191A23;
  }
}

.tick-mark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 2s forwards, fill 2s forwards infinite;
}

.tick-mark.fill {
  animation: fill 2s forwards;
}

.cnfBtn {
  color: white;
  font-size: 17px;
  font-family: 'DINBold';
  background-color: #9747FF !important;
  border: 0;
  width: 100%;
  padding: 15px;
}