/*
Theme Name: PHONGNV Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/* Container chứa các cột */
#wpcf7-f15-p1823-o1 .wpcf7-form .flex-row {
    display: flex;
    gap: 0.5rem; /* Tương ứng gap-2 trong tailwind */
    align-items: center;
}

#wpcf7-f15-p1823-o1 .wpcf7-form .flex-col.flex-grow {
    flex: 1 1 0%;
}

/* Style cho Input Email */
#wpcf7-f15-p1823-o1 .wpcf7-form .wpcf7-email {
    width: 100% !important;
    background-color: #ffffff !important; /* bg-white */
    border: none !important;
    border-radius: 9999px !important; /* rounded-full */
    padding: 0.5rem 1rem !important; /* px-4 py-2 */
    font-size: 0.875rem !important; /* text-sm */
    color: #1b1c1c !important; /* on-background */
    transition: all 0.3s ease !important;
	box-shadow: 0 0 0 1px #006e1c !important; 
	min-width: 200px;
}

#wpcf7-f15-p1823-o1 .wpcf7-form .wpcf7-email:focus {
    box-shadow: 0 0 0 1px #006e1c !important; 
	/* focus:ring-1 focus:ring-primary */
    outline: none !important;
}

/* Chỉnh style cho placeholder của Contact Form 7 */
#wpcf7-f15-p1823-o1 .wpcf7-form .wpcf7-email::placeholder {
    color: #6f7a6b; /* Sử dụng màu outline trong file của bạn */
/*     font-family: 'Be Vietnam Pro', sans-serif; /* font-body */ */
    font-size: 0.875rem; /* text-sm */
    opacity: 0.8;
}

/* Hiệu ứng khi nhấn vào ô input (placeholder mờ đi) */
#wpcf7-f15-p1823-o1 .wpcf7-form .wpcf7-email:focus::placeholder {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
/* Style cho nút Gửi (Submit) */
#wpcf7-f15-p1823-o1 .wpcf7-form input[type="submit"] {
    background-color: #006e1c; /* bg-primary */
    color: #ffffff; /* text-white */
    width: 40px;
    height: 40px;
    border-radius: 9999px; /* rounded-full */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    padding: 0;
    /* Để nút là hình tròn và căn giữa chữ 'Gửi' */
}

#wpcf7-f15-p1823-o1 .wpcf7-form input[type="submit"]:hover {
    background-color: #4caf50; /* primary-container */
}

/* Ẩn các p mặc định của WP nếu cần */
#wpcf7-f15-p1823-o1 .wpcf7-form p {
    margin: 0;
	display: flex;
    align-items: center;
    justify-content: center;
}

/* Thông báo phản hồi */
#wpcf7-f15-p1823-o1 .wpcf7-response-output {
    margin-top: 10px !important;
    font-size: 0.75rem;
    border-radius: 8px !important;
    border: 1px solid #becab9 !important;
    padding: 5px 10px !important;
    color: #3f4a3c;
}