.elementor-5784 .elementor-element.elementor-element-3bb2916{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5784 .elementor-element.elementor-element-26baf0c1{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-c2913a2 *//* MAIN BACKGROUND */
.loan-form {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background: #f8f6f1; /* soft cream */
  border-radius: 20px;
}

/* HEADING */
.loan-form h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #b8962e;
}

.loan-form h2 span {
  color: #d4af37;
}

.loan-form .sub {
  color: #7a6a2f;
  font-size: 14px;
  margin-bottom: 30px;
}

/* CARD STYLE */
.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid #eee2b8;
  transition: 0.3s;
}

/* HOVER */
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
  border-color: #d4af37;
}

/* SECTION TITLE */
.form-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #b8962e;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* GRID */
.row {
  display: flex;
  gap: 16px;
  margin-bottom: 15px;
}

.col {
  flex: 1;
}

/* INPUTS */
.loan-form input,
.loan-form select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e6d7a8;
  background: #fff;
  font-size: 14px;
  transition: all 0.25s ease;
}

/* FOCUS */
.loan-form input:focus,
.loan-form select:focus {
  background: #fff;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
  outline: none;
}

/* SELECT ARROW */
.loan-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23b8962e' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* FILE INPUT */
.loan-form input[type="file"] {
  border: 2px dashed #e6d7a8;
  background: #fbf8f1;
  padding: 12px;
}

/* LABEL */
.loan-form label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #8a7a35;
}

/* AGREEMENT */
.form-agree {
  margin-top: 20px;
  font-size: 13px;
  color: #7a6a2f;
}

/* BUTTON */
.form-submit input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.form-submit input:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
  background: linear-gradient(135deg, #e6c65c, #c9a63a);
}

/* MOBILE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .loan-form {
    padding: 20px;
  }
}/* End custom CSS */