/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
  }
  
  #payment-form-div {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  input[type="text"],
  input[type="email"]{
    border: 1px solid rgb(91 91 91 / 30%) !important;
  }
  input[type="text"],
  input[type="email"],
  input[type="button"],
  input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  input[type="radio"] {
    margin-right: 5px;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 15px;
  }
  .oss-form-group > div{
    margin:2px 7px;
  }
  input[type="text"]:focus,
  input[type="button"]:hover,
  input[type="submit"]:hover {
    /* background-color: #2a8e4e; */
    /* color: #fff; */
  }
  
  #other_amount {
    display: none;
  }
  .vpa-input-group{
    display: flex;
  }
  
.vpa-remark-success{
  color:green;   
}
.vpa-remark-invalid{
    color:red;
}
.vpa-name{
    font-weight: bold;
}
#placeOrderButton,#checkVPAButton{
    /* background-color: #FCA311; */
    color: #000;
    font-weight: bolder;
    text-transform: uppercase;
    max-width: 300px;
    text-align: center;
}