.bcft-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: "Open Sans", sans-serif;
}

.bcft-section-title {
    border-bottom: 2px solid #2271b1;
    color: #2271b1;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 5px;
}

.bcft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.bcft-grid label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.bcft-grid input,
.bcft-grid select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.full-width {
    grid-column: 1 / -1;
}

.bcft-agreement {
    margin-top: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #2271b1;
    font-size: 14px;
}

.bcft-recaptcha {
    margin-top: 20px;
}

.bcft-submit {
    margin-top: 30px;
    text-align: center;
}

.bcft-submit input[type="submit"] {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.bcft-submit input[type="submit"]:hover {
    background-color: #1a5d91;
}

.bcft-validation-alert {
    background-color: #fbeaea;
    border-left: 4px solid #d63638;
    color: #b32d2e;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* 🔴 Highlight inputs with missing info */
.bcft-error {
    border-color: #d63638 !important;
    background-color: #ffe5e5 !important;  /* light red background */
    box-shadow: 0 0 0 3px rgba(214,54,56,0.15);
}

.bcft-error-message {
    color: #b32d2e;
    font-size: 13px;
    margin-top: 4px;
}

p.success {
    color: green;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

p.error {
    color: #b32d2e;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}