.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* :where(.main_container, form, .input-field, header) {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
  } */ 
   /* form, .input-field, */
  :where(.container, header) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .container {
    background: #fff;
    padding: 30px 65px;
    border-radius: 12px;
    row-gap: 20px;
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
  }
  .container header {
    height: 65px;
    width: 65px;
    background: #2e3192;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 50%;
  }
  .container h4 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
  }
  .verificationhead {
    margin: 0;
  }
  form .input-field {
    flex-direction: row;
    column-gap: 10px;
  }
  .input-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
  }
  .input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  }
  .input-field input::-webkit-inner-spin-button,
  .input-field input::-webkit-outer-spin-button {
    display: none;
  }
  form button {
    margin-top: 25px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 9px 0;
    cursor: pointer;
    border-radius: 6px;
    pointer-events: auto;
    background: #4145b9;
    transition: all 0.2s ease;
  }
  form button.active {
    background: #2e3192;
    pointer-events: auto;
  }
  form button:hover {
    background: #4145b9;
  }
  .progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    margin-top: 10px;
  }

  .progress-bar-inner {
    height: 100%;
    background-color: #4caf50;
    width: 100%;
  }

  .timer {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
  }

  .hide {
    display: none;
  }