/* Start custom CSS for bdevs-contact, class: .elementor-element-49c908aa *//* Khung form */
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Input + textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.25s ease;
}

/* Hiệu ứng focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    outline: none;
}

/* Textarea chiều cao */
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Nút gửi */
.contact-form input[type="submit"] {
    width: 100%;
    padding: 14px 0;
    border-radius: 12px;
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #084298;
}

/* Hiệu ứng hover sweep (nếu dùng class hvr-sweep-to-right) */
.hvr-sweep-to-right {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    background: #084298;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    z-index: -1;
}

.hvr-sweep-to-right:hover:before {
    left: 0;
}/* End custom CSS */