/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 25 2025 | 12:39:34 */
/* Layout */
.dg-form-wrap .dg-row {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.dg-form-wrap .dg-col {
  flex: 1;
}

.dg-form-wrap .dg-full {
  flex: 100%;
}

/* Underline fields */
.dg-form-wrap input,
.dg-form-wrap textarea,
.dg-form-wrap select {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #cfd8ea !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
  outline: none;
}

/* Focus */
.dg-form-wrap input:focus,
.dg-form-wrap textarea:focus,
.dg-form-wrap select:focus {
  border-bottom-color: #4f6df5 !important;
}

/* Textarea */
.dg-form-wrap textarea {
  min-height: 100px;
  resize: none;
}

/* Remove CF7 p margin */
.dg-form-wrap p {
  margin: 0;
}

/* Mobile stack */
@media (max-width: 768px) {
  .dg-form-wrap .dg-row {
    flex-direction: column;
    gap: 25px;
  }
}
/* ===== Submit Button Style ===== */

.dg-form-wrap input[type="submit"] {
  background-color: #9D52FF !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 30px;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

/* Hover */
.dg-form-wrap input[type="submit"]:hover {
  background-color: #7f34f5 !important;
  transform: translateY(-2px);
}

/* Align button to right */
.dg-form-wrap .wpcf7-submit {
  
  margin-top: 20px;
}
.dg-form-wrap .wpcf7-form p:last-child {
  text-align: left !important;
}
