/* Khung form */
.custom-consult-form {
    background: #ffe6e6;
    padding: 20px;
    border: 1px solid var(--Bright-Orange);
    border-radius: 8px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Tiêu đề */
.custom-consult-form h3 {
    text-align: center;
    color: #f26522;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Input và select */
.custom-consult-form input,
.custom-consult-form select {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

/* Hiệu ứng khi focus */
.custom-consult-form input:focus,
.custom-consult-form select:focus {
    border-color: #f26522;
    box-shadow: 0 0 5px rgba(242,101,34,0.3);
}

/* Nút submit */
.custom-consult-form input[type="submit"] {
    background: #f26522;
    color: white;
    font-weight: bold;
    border: none;
    width: 40%;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Hiệu ứng hover nút */
.custom-consult-form input[type="submit"]:hover {
    background: #d8561e;
}

/* Responsive cho điện thoại */
@media (max-width: 768px) {
    .custom-consult-form {
        padding: 15px;
    }
    .custom-consult-form input,
    .custom-consult-form select {
        font-size: 13px;
    }
	
	.custom-consult-form input[type="submit"] {
		width: 50%;
	}
}
