/*!
Theme Name: Omni Sync v2
Theme URI: http://bluecoral.vn
Author: Blue Coral
Author URI: http://bluecoral.vn
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: omnisync

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ==========================================================================
   Fluent Forms - Custom Styles for Book Appointment Popup
   ========================================================================== */

/* Margin bottom for name field wrapper */
.w-form .ff-field_container.ff-name-field-wrapper {
  margin-bottom: 20px !important;
}

/* Terms and Conditions / Privacy Policy Links - Bold and Blue */
.w-form .ff-el-form-check-label a {
  color: #2563EB !important;
  font-weight: 700 !important;
  text-decoration: none;
}

.w-form .ff-el-form-check-label a:hover {
  text-decoration: underline;
}

/* Submit Button Gradient Background */
.w-form .ff-btn-submit {
  background: linear-gradient(135deg, #076EFF 0%, #255FDE 100%) !important;
  border: none !important;
  box-shadow: none !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 80px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.w-form .ff-btn-submit:hover {
  opacity: 0.9;
}

/* Mobile: Button full width */
@media (max-width: 767px) {
  .w-form .ff-btn-submit {
    width: 100% !important;
  }
}

/* Success Message - Remove Default Styles */
.w-form .ff-message-success {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0 !important;
}