.bv-enquiry-form-wrap {
    width: 100%;
}

.bv-enquiry-message {
    margin-bottom: 24px;
    padding: 14px 16px;
    font-size: .9rem;
}

.bv-enquiry-message-success {
    color: #164e2e;
    background: #e5f5eb;
}

.bv-enquiry-message-error {
    color: #7d1d1d;
    background: #fdecec;
}

.bv-enquiry-form {
    display: grid;
    gap: 26px;
}

.bv-enquiry-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.bv-enquiry-form legend {
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(7,31,61,.15);
    color: #071f3d;
    font-size: 1.35rem;
    font-weight: 800;
}

.bv-enquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bv-enquiry-field label {
    display: block;
    margin-bottom: 7px;
    color: #071f3d;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.bv-enquiry-field label > span {
    color: #b98915;
}

.bv-enquiry-field input,
.bv-enquiry-field select,
.bv-enquiry-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid rgba(7,31,61,.18);
    border-radius: 0;
    color: #20252b;
    background: #fff;
    font: inherit;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.bv-enquiry-field textarea {
    resize: vertical;
}

.bv-enquiry-field input:focus,
.bv-enquiry-field select:focus,
.bv-enquiry-field textarea:focus {
    outline: 0;
    border-color: #d3a62c;
    box-shadow: 0 0 0 3px rgba(211,166,44,.15);
}

.bv-file-field {
    padding: 20px;
    border: 1px dashed rgba(7,31,61,.24);
    background: #f7f6f2;
}

.bv-file-field input {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.bv-file-field small {
    display: block;
    margin-top: 8px;
    color: #6e7881;
}

.bv-enquiry-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5f6972;
    font-size: .78rem;
    line-height: 1.5;
}

.bv-enquiry-consent input {
    margin-top: 4px;
}

.bv-enquiry-consent a {
    color: #0b3566;
    text-decoration: underline;
}

.bv-enquiry-submit {
    display: inline-flex;
    width: fit-content;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid #071f3d;
    color: #fff;
    background: #071f3d;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.bv-enquiry-submit:hover {
    background: #0b3566;
    transform: translateY(-2px);
}

.bv-enquiry-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 680px) {
    .bv-enquiry-grid {
        grid-template-columns: 1fr;
    }

    .bv-enquiry-submit {
        width: 100%;
    }
}
