.verify-popup.container {
  position: absolute;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
}

.verify-popup.container.active {
  display: flex;
}

.verify-popup__body {
  padding: 32px 10px;
  width: 100%;
  background: #181a1e;
  display: flex;
  width: 440px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  border: 2px solid rgba(47, 47, 48);
  height: 436px;
}

.verify-popup__body h3 {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
}

.verify-popup__body p {
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
  text-align: center;
}
.verify-popup .input_wrapper {
  display: flex;
  gap: 5px;
}
.verify-popup input {
  width: 56px;
  height: 56px;
  background: #4b5563;
  border-radius: 12px;
  text-align: center;
}
.verify-popup input:last-child {
  margin-left: 0;
}

.disable-text {
  padding: 0 80px;
  margin-top: 32px;
  margin-bottom: 0 !important;
}

.disable-btn {
  color: #818cf8;
  display: inline;
  font-size: 14px;
  transition: background-color 0.1s ease-in;
}

.disable-btn:hover {
  color: #a5b4fc;
}

@media screen and (max-width: 675px) {
  .verify-popup input {
    width: 36px;
    height: 36px;
    margin-right: 8px;
    padding-top: 6px;
    padding-left: 14px;
  }
  .verify-popup__body h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
