  .toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    /* slide down effect */
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
  }

  /* Show state */
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  .login-option {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-align: end;
    padding: 10px 0;
  }




  @media (max-width: 650px) {

  .country-code-select{
    width: 25% !important;
    padding: 8px 0px !important;
  }
  }