/* BE1X SIM Contact Form — frontend styles */
.be1x-scf-wrapper {
    max-width: 100%;
    margin: 0 auto;
}
.be1x-scf-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.be1x-scf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.be1x-scf-field > label {
    font-weight: 600;
    color: #1E262E;
    font-size: 15px;
    line-height: 1.4;
}
.be1x-scf-field input[type="text"],
.be1x-scf-field input[type="email"],
.be1x-scf-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.4;
    background: #fff;
    color: #1E262E;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.be1x-scf-field input[type="text"]:focus,
.be1x-scf-field input[type="email"]:focus,
.be1x-scf-field textarea:focus {
    outline: none;
    border-color: #F1592A;
    box-shadow: 0 0 0 3px rgba(241,89,42,0.15);
}
.be1x-scf-field textarea {
    resize: vertical;
    min-height: 140px;
}
.be1x-scf-required {
    color: #F1592A;
    font-weight: 700;
}
.be1x-scf-field-consent > label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
}
.be1x-scf-field-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #F1592A;
}
.be1x-scf-field-consent a {
    color: #17597B;
    text-decoration: underline;
}
.be1x-scf-field-consent a:hover {
    color: #F1592A;
}
.be1x-scf-submit {
    margin-top: 6px;
}
.be1x-scf-btn {
    background: #F1592A;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease, transform 0.1s ease;
}
.be1x-scf-btn:hover:not(:disabled) {
    background: #d84518;
}
.be1x-scf-btn:active:not(:disabled) {
    transform: translateY(1px);
}
.be1x-scf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.be1x-scf-message {
    padding: 14px 18px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
}
.be1x-scf-message.success {
    display: block;
    background: #e6f7ee;
    color: #0d632c;
    border: 1px solid #a5dcbc;
}
.be1x-scf-message.error {
    display: block;
    background: #fbeaea;
    color: #922c2e;
    border: 1px solid #e8a5a6;
}
.be1x-scf-field.error input,
.be1x-scf-field.error textarea {
    border-color: #d63638;
}
/* Honeypot — completely hidden from users but visible to bots */
.be1x-scf-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
