.popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
  }
  
  .popup-box {
    background-color: #FFFFFF;
    border: 1px solid #CBD2DB;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
  
  .popup-text {
    color: #032A5A;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .belat-button {
    background-color: #14AA95;
    color: #FFFFFF;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
  }
  
  .belat-button:hover {
    background-color: #12967f;
  }
  
  .cancel-button {
    background-color: #CBD2DB;
    color: #032A5A;
    margin-left: 0.75rem;
  }

  .popup-box {
    position: relative;
    animation: popup-fade 0.4s ease-out;
  }
  
  .popup-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    animation: icon-bounce 0.6s ease;
  }

  
  @keyframes popup-fade {
    0% {
      opacity: 0;
      transform: scale(0.96);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes icon-bounce {
    0% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  @media (max-width: 480px) {
    .popup-box {
      padding: 2rem;
    }
  
    .belat-button {
      width: 100%;
      margin-top: 1rem;
    }
  
    .cancel-button {
      margin-left: 0;
      margin-top: 1rem;
      width: 100%;
    }
  }

  .kcButtonPrimary {
    background-color: #14AA95;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .kcButtonPrimary:hover {
    background-color: #12967f;
  }
  
  .kcButtonDefault {
    background-color: #CBD2DB;
    color: #032A5A;
    font-weight: 500;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .kcButtonDefault:hover {
    background-color: #b4bbc4;
  }

  .input-belat {
    padding: 0.5rem 1rem;
    border: 2px solid #CBD2DB;
    background-color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #4A5568;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 400;
  }
  
  .input-belat:focus {
    border-color: #236195;
    box-shadow: 0 0 0 2px rgba(35, 97, 149, 0.2);
  }