/*
Theme Name: webbaoloc
Description: This is a child theme for Theme Dulich
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* ==============================
   Contact Form 7 - Flatsome Style
   ============================== */

/* Căn chỉnh chung */
.wpcf7 form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Label */
.wpcf7 form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Input, Select, Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #0073e6; /* màu xanh du lịch của Flatsome */
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,115,230,0.1);
}

/* Textarea */
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.wpcf7 input[type="submit"] {
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.wpcf7 input[type="submit"]:hover {
  background: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,115,230,0.3);
}

/* Khoảng cách các trường */
.wpcf7 p {
  margin-bottom: 18px;
}

/* Thông báo thành công / lỗi */
.wpcf7-response-output {
  margin: 15px 0 0;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  color: #0050b3;
}

.wpcf7-validation-errors {
  background: #fff1f0;
  border: 1px solid #ffa39e;
  color: #a8071a;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #a8071a;
  margin-top: 4px;
  display: block;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}