/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://metaaffinity.net
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/







.cf7-custom-form {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.cf7-custom-form .form-row {
  margin-bottom: -19px;
}

 .cf7-custom-form .form-group {
  margin-bottom: 5px;
}

.cf7-custom-form .form-group.full-width {
  width: 100%;
}

.cf7-custom-form .triple-column {
  display: flex;
  gap: 15px;
}

.cf7-custom-form .triple-column .form-group {
  flex: 1;
}

.cf7-custom-form .form-group h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 35px;
}

.cf7-custom-form label {
  display: block;
  margin-bottom: -5px;
  font-weight: 600;
  color: #444;
}

.cf7-custom-form .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;

  background-color: rgb(247, 247, 247);
}



.cf7-custom-form .form-control:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.cf7-custom-form .image-upload-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cf7-custom-form .upload-box {
  flex: 1;
  min-width: 200px;
}

.cf7-custom-form .upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  padding: 15px;
}

.cf7-custom-form .upload-label:hover {
  border-color: #4a90e2;
  background-color: #f8faff;
}

.cf7-custom-form .upload-icon {
  font-size: 32px;
  color: #4a90e2;
  margin-bottom: 10px;
}

.cf7-custom-form .upload-text {
  font-size: 14px;
  color: #666;
}

.cf7-custom-form .file-input {
  display: none;
}

.cf7-custom-form .image-preview {
  margin-top: 10px;
  display: none;
}

.cf7-custom-form .image-preview img {
  max-width: 100%;
  max-height: 150px;
  border-radius: 4px;
  border: 1px solid #eee;
}

.cf7-custom-form .submit-btn {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.cf7-custom-form .submit-btn:hover {
  background-color: #3a7bc8;
}

@media (max-width: 600px) {
  .cf7-custom-form .triple-column {
    flex-direction: column;
  }
  
  .cf7-custom-form .upload-box {
    min-width: 100%;
  }
}



