  .custom-component {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .otp-container {
    width: 70%;
  }

  .error-text {
    margin-bottom: 10px;
    text-align: right;
    color: #B62424;
    font-weight: 400;
    width: 75%;
    margin-left: auto;
  }

  .otp-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .otp-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2vh;
    gap: 1vh;
    direction: ltr;
  }

  .otp-input {
    aspect-ratio: 1 / 1;
    height: 100%;
    text-align: center;
    font-size: 3.5rem;
    border: 2px solid #009245;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    padding: 0;
  }

  .link-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .submit-button:hover {
    background-color: #45a049;
  }

  .left-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .text-submit {
    background: none;
    border: none;
    color: #009245;
    cursor: pointer;
    font-size: 2vh;
    padding: 0;
    margin: 0;
    display: inline;
  }

  .saas-exit-link {
    align-self: flex-end;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #059669; 
    border: 1px solid #059669;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    margin: 0.5rem;
    display: flex;
  }
  
  .saas-exit-link:hover {
    background-color: #ecfdf5;
  }
  
  .saas-exit-link svg {
    width: 18px;
    height: 18px;
    stroke: #059669;
  }

  @media screen and (max-width: 1440px) {
    .otp-container {
      width: 100%;
      margin-bottom: 1rem;
    }
  }

  @media screen and (max-width: 768px) {
    .otp-div {
      justify-content: space-between;
    }

    .otp-input {
      font-size: 2rem;
      border: 0.25vh solid #009245;
      border-radius: 1vh;
    }

    .custom-component {
      width: 100%;
    }

    .left-image {
      max-width: 75vh;
    }

    .text-submit {
      font-size: 3vh;
    }

    .saas-exit-link {
      display: none;
    }
  }
