html.modal-open {
  overflow: hidden;
}
.is-hidden {
  display: none;
}
#verification {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  padding: 100px 20px 40px;
}

.container.is-1000 {
  padding: 100px 48px;
  max-width: 960px;
  margin: auto;
  text-align: center;
  background: #fff;
  border-radius: 32px;
}

#verification h1 {
  text-align: center;
  margin-bottom: 32px;
}

#verification .note {
  color: #393d5f;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
}
#verification .note strong {
  color: #0a0f39;
}
#verification .note span {
  display: block;
  margin: auto;
  max-width: 700px
}

#verification .form-group {
  margin-bottom: 32px;
}

#verification .input-container {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

#verification input[type="text"] {
  flex: 1;
  background: white;
  border: 1px solid #e7e8ee;
  border-radius: 4px;
  color: #0a0f39;
  height: 40px;
  padding: 14px;
  text-align: left;
}

#verification input[type="text"]::placeholder {
  color: #878bab;
}

#verification input[type="text"]:focus-visible {
  border: 1px solid #4f56fa !important;
  outline: 3px solid #ebecff !important;
}
#verification .button-new.validate-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
}
#verification .button-new.dark-blue{
  box-shadow: none;
  margin-top: 24px;
}

#verification .button-new.validate-btn:disabled {
  background: #bdc3c7;
  cursor: auto;
}

#verification .button-new.validate-btn:disabled:hover {
  background: #bdc3c7 !important;
}

/* Modal Styles */
#verification .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0 16px;
}

#verification .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

#verification .modal {
  background: white;
  padding: 48px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#verification .modal-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

#verification .modal-icon.success {
  color: #27ae60;
}

#verification .modal-icon.error {
  color: #e74c3c;
}

#verification .modal h2 {
  margin-bottom: 5px;
}

#verification .modal p {
  color: #393d5f;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  text-wrap: balance;
  margin: auto;
  margin-top: 16px;
}
#verification .modal .name-wrapper {
  display: flex;
  gap: 5px; 
  align-items: center;
  justify-content: center;
}
#verification .modal .name-wrapper p{
  font-size: 15px;
  margin: 0;
}
#verification .modal .name-wrapper h3{
  color: var(--dark-blue);
  font-size: 16px; 
  font-weight: 500;
}
#verification .modal p span.red {
  color: red;
  padding: 0 6px 1px;
  border: 1px solid rgb(255, 0, 0, .2);
  background: rgb(255, 0, 0, .06);
  border-radius: 50px;
}
#verification .modal p span.green {
  color: rgb(0 128 0);
  border: 1px solid rgb(0, 128, 0, .2);
  padding: 0 6px 1px;
  background: rgb(0, 255, 0, .06);
  border-radius: 50px;
}
#verification .icon-wrapper {
  max-width: 110px;
  margin: auto;
  margin-bottom: 24px;
}
.cls-1 {
  stroke-miterlimit: 10;
  stroke-width: 5px;
}

.circle {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}

.checkmark {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
}

.run-animation .circle {
  -webkit-animation: 1s circleDraw forwards;
  animation: 1s circleDraw forwards;
}
.run-animation .checkmark {
  -webkit-animation: 0.5s checkmarkDraw forwards;
  animation: 0.5s checkmarkDraw forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes circleDraw {
  from {
    stroke-dashoffset: 700;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes circleDraw {
  from {
    stroke-dashoffset: 700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmarkDraw {
  from {
    stroke-dashoffset: 150;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmarkDraw {
  from {
    stroke-dashoffset: 150;
  }
  to {
    stroke-dashoffset: 0;
  }
}

{# Modal Styles #}
@media (max-width: 991px) {
  
  #verification .note span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #verification {
    min-height: 0;
    padding: 180px 0 120px; 
    background: white;
  }
  .container.is-1000 {
    padding: 0 20px;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  #verification .modal {

    padding: 36px 24px;
  }
  #verification .icon-wrapper {
    max-width: 80px;
    margin-bottom: 18px;
  }
  #verification .modal p {
    font-size: 14px;
    margin-bottom: 24px;
    text-wrap: pretty;
  }
  .revamp .oz-site-wrapper .button-new {
    padding: 8px 16px;
    font-size: 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

}