/**
Theme Name: Pushp Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pushp-child
Template: astra
*/
/* Form Container */
.address-list li span {
    margin-right: 10px;
    margin-top: 5px;
}
.ppf-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Row */
.ppf-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* Columns */
.ppf-col {
  width: 50%;
}

.ppf-col-full {
  width: 100%;
}

/* Inputs */
.ppf-form input,
.ppf-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #c2994d;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

/* Focus Effect */
.ppf-form input:focus,
.ppf-form textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 5px rgba(46,125,50,0.3);
  outline: none;
}

/* Button */
.ppf-form input[type="submit"] {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* Button Hover */
.ppf-form input[type="submit"]:hover {
  background: #1b5e20;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ppf-row {
    flex-direction: column;
  }

  .ppf-col {
    width: 100%;
  }
}