body {
    background: url('../images/set-of-restaurant-doodles-food-and-drinks-on-black-background-vector.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }

  .container {
    backdrop-filter: blur(1px);
    background: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    width: 500px;
    text-align: center;
    color: gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden; /* ADD THIS */
  }
  
  .form-slider {
    display: flex;
    transition: transform 0.6s ease;
    /* width: 300%; */
  }
  
  .form-step {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  

  h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .form-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 180px; /* adjust to fit your inputs/buttons */
    overflow: hidden;
  }

  

  input {
    text-align: center;
    width: 90%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
  }

  button {
    width: 96%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    background: gold;
    color: black;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  button:hover {
    background: #d4af37;
  }

  .progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
  }

  .progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: gold;
    z-index: 1;
  }

  .progress-step {
    width: 18px;
    height: 18px;
    background: black;
    border: 2px solid gold;
    border-radius: 50%;
    z-index: 2;
  }

  .progress-step.active {
    background: gold;
  }

  .message {
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 1rem;
  }

  @media (max-width: 480px) {
    h2 {
      font-size: 1.5rem;
    }

    input,
    button {
      font-size: 0.95rem;
    }

    .progress-step {
      width: 16px;
      height: 16px;
    }
  }