.divider:after,
      .divider:before {
        content: "";
        flex: 1;
        height: 1px;
        background: #eee;
      }

      .h-custom {
        height: calc(100% - 73px);
      }

      @media (max-width: 450px) {
        .h-custom {
          height: 100%;
        }
      }

      .logo {
        position: relative;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 100%%;
      }

      section {
        width: 100%;
        min-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
      .container {
        /* border-radius: 0px; */
        background-color: rgb(255, 255, 255);
        width: 100%;
        max-width: 600px;
        /* padding: 30px 20px; */
        text-align: center;
      }
      .title {
        font-size: 25px;
        margin-bottom: 30px;
      }
      #otp-form {
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
      }
      #otp-form input {
        border: none;
        background-color: #ffffff;
        color: rgb(70, 66, 66);
        font-size: 26px;
        text-align: center;
        padding: 10px;
        width: 100%;
        max-width: 50px;
        height: 44px;
        border-radius: 4px;
        outline: 2px solid rgb(207, 16, 16);
      }
      #otp-form input:focus-visible {
        outline: 2px solid rgb(207, 16, 16);
      }
      #otp-form input.filled {
        outline: 2px solid royalblue;
      }
      #verify-btn {
        cursor: pointer;
        display: inline-block;
        margin-top: 20px;
        background-color: rgb(217, 54, 49); /* Red color */
        color: white;
        padding: 7px 10px;
        border-radius: 4px;
        font-size: 16px;
        border: none;
        width: 104px;
        height: 42px;
        transition: background-color 0.3s ease;
      }

      #verify-btn:disabled{
        cursor: not-allowed;
        /* background-color: grey; */
      }
      #user_submit{
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        width: 127px;
        background-color: rgb(217, 54, 49);
        color: white;
      }

      .img-fluid {
        margin-top: 20px
      }


      #error_message{
        color: red; text-align-last: center; margin-bottom: 0
      }

      #otp-container{
        display:none
      }