
.container-1{
    padding-left: 80px;
    padding-right: 80px;
  }
  
  .container-1 .title{
    font-size: 25px;
    font-weight: 500;
    position: relative;
  }
  
  h4{
    text-align: center;
  } 
  
  .container-1.title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background: linear-gradient(135deg,white);
  }
  
  .container-1 .user-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin: 20px 0 12px 0;
  } 
  
  .user-details .input-box{
    margin-bottom: 15px;
    width: calc(100% / 2 - 20px);
  }
  
  .user-details .input-box .details{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .user-details .input-box input{
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
  }
  
  .user-details .input-box input:focus,
  .user-details .input-box input:valid{
      border-color: #9b59b6;
  }
  .button {
    height: 45px;
    margin: 45px 10px 45px 0;
}

.button button {
    height: 100%;
    width: 100%;
    outline: none;
    color: black;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f5f5f5, white);
    padding-left: 15px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.button button:hover {
    background: linear-gradient(-135deg, #f5f5f5, white);
}

  
  .container-1 .qr-img{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .qr-img img{
    height: 300px;
    width: 300px;
  }
  
  
  
  @media (max-width: 584px){
    .container-1{
        max-width: 100%;
    }
    form .user-details .input-box{
        margin-bottom: 15px;
        width: 100%;
    }
    .container-1 form .user-details{
        max-height: 300px;
        overflow-y: scroll;
    }
    .user-details::-webkit-scrollbar{
        width: 0;
    }
  } 
  
  @media (max-width: 767px){
    .container-1 {
        height: 550px;
        padding: 20px; 
      }
    
    
      .user-details .input-box {
        width: 100%; 
      }
    
      .container-1 .user-details {
        max-height: none; 
        overflow-y: auto; 
      }
  }  

  /* Add these styles for the dropdown select */
.container-1 .user-details .input-box select {
  height: 48px;
  width: 103%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.container-1 .user-details .input-box select:focus {
  border-color: #9b59b6;
}

/* Style the dropdown options */
.container-1 .user-details .input-box select option {
  font-size: 16px;
  padding: 10px;
}

/* Style the dropdown arrow icon */
.container-1 .user-details .input-box select::-ms-expand {
  display: none;
}

.container-1 .user-details .input-box select::after {
  content: '\25BC';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

input[name="discount"] {
    border: 1px dashed #888; 
    background-color: #f9f9f9;
}
