.cert-popup > div {
  height: 490px;
}

.cert-popup > p {
  padding: 20px 0 30px;
}

a.modal-close-btn {
  float: right;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  z-index: 100;
}

.cert-timer {
  display: block;
  color: red;
}

.cert-code-input {
  text-align: center;
  font-size: 24px !important;
  letter-spacing: 0.7em;
}

.cert-code-input::placeholder {
  opacity: 0.3;
}

.mail-cert-modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 20010;
}

.spinner {
  display: flex;
  gap: 20px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #333;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.24s;
}

.dot:nth-child(2) {
  animation-delay: -0.12s;
}

.dot:nth-child(3) {
  animation-delay: 0;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

@media screen and (max-width: 400px) {
  .cert-popup > div {
    height: 530px;
  }
}