.bbh-careers-form {
    padding-top: 30px;
}

.bbh-form-grid {
    display: grid;
    gap: 14px;
}

.bbh-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bbh-careers-form .bbh-form-row {
    margin-bottom: 14px;
}

.bbh-careers-form input[type="text"],
.bbh-careers-form input[type="email"],
.bbh-careers-form input[type="tel"],
.bbh-careers-form input[type="date"],
.bbh-careers-form select,
.bbh-careers-form textarea {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
    color: #0e275a;
    background: #ffffff;
    border: 1px solid #0e275a;
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.bbh-careers-form input::placeholder,
.bbh-careers-form textarea::placeholder {
    color: #7b8599;
    opacity: 1;
}

.bbh-careers-form input:focus,
.bbh-careers-form select:focus,
.bbh-careers-form textarea:focus {
    border-color: #e6c86f;
    box-shadow: 0 0 0 1px #e6c86f;
}

.bbh-careers-form textarea {
    min-height: 120px;
    resize: vertical;
}

.bbh-careers-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, #b99756 50%),
        linear-gradient(135deg, #b99756 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
    cursor: pointer;
}

.bbh-field-label,
.bbh-upload-label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #6c7487;
}

.bbh-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.bbh-radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: #0e275a;
    cursor: pointer;
}

.bbh-radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #0e275a;
}

.bbh-upload-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.bbh-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 0;
    background: #b99756;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease;
}

.bbh-upload-button:hover {
    opacity: 0.9;
}

.bbh-upload-button input[type="file"] {
    display: none;
}

.bbh-file-name {
    font-size: 13px;
    color: #6c7487;
}

.bbh-consent-row {
    margin-top: 8px;
}

.bbh-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.45;
    color: #6c7487;
    cursor: pointer;
}

.bbh-checkbox-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 17px;
    accent-color: #b99756;
}

.bbh-careers-form .bbh-submit-btn {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: #c7b892;
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.bbh-careers-form .bbh-submit-btn:hover,
.bbh-careers-form .bbh-submit-btn:focus {
    background: #b99756;
    color: #ffffff;
}

.bbh-careers-form .bbh-submit-btn:active {
    transform: translateY(1px);
}

.bbh-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .bbh-grid-2 {
        grid-template-columns: 1fr;
    }

    .bbh-form-section-title {
        font-size: 24px;
    }
}