/* ═══════════════════════════════════════════════
   Anglican Care — Broker Sign-Up
   Companion Plugin Stylesheet
   Brand: Navy / Gold / Soft Red / Cream
   ═══════════════════════════════════════════════ */

.ac-bs-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    font-family: 'Inter', 'Source Sans Pro', Arial, sans-serif;
    color: #1a1a1a;
}

/* Header */
.ac-bs-header {
    text-align: center;
    margin-bottom: 32px;
}

.ac-bs-title {
    font-family: 'Merriweather', 'Lora', Georgia, serif;
    font-size: 28px;
    color: #1B2A4A;
    margin: 0 0 8px;
}

.ac-bs-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Info Banner */
.ac-bs-info-banner {
    background: #F8F5F0;
    border: 1px solid #E8E0D0;
    border-radius: 8px;
    padding: 18px 24px;
    margin-bottom: 32px;
}

.ac-bs-info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #E8E0D0;
}

.ac-bs-info-row:last-child {
    border-bottom: none;
}

.ac-bs-info-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.ac-bs-info-value {
    font-size: 14px;
    color: #1B2A4A;
    font-weight: 600;
}

/* Form Sections */
.ac-bs-section {
    margin-bottom: 28px;
}

.ac-bs-section-title {
    font-family: 'Merriweather', 'Lora', Georgia, serif;
    font-size: 18px;
    color: #1B2A4A;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #C4A747;
    border-bottom-width: 2px;
}

/* Grid */
.ac-bs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ac-bs-field--full {
    grid-column: 1 / -1;
}

/* Fields */
.ac-bs-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 5px;
}

.ac-bs-field input[type="text"],
.ac-bs-field input[type="email"],
.ac-bs-field input[type="tel"],
.ac-bs-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.ac-bs-field input:focus,
.ac-bs-field select:focus {
    outline: none;
    border-color: #1B2A4A;
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

.ac-bs-required {
    color: #D44E5C;
}

.ac-bs-field-help {
    font-size: 12px;
    color: #6B7280;
    margin: 5px 0 0;
}

/* Checkbox Group */
.ac-bs-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.ac-bs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.ac-bs-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ac-bs-checkbox-label a {
    color: #1B2A4A;
    text-decoration: underline;
}

/* Disclaimer */
.ac-bs-disclaimer {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin-top: 16px;
    padding: 12px 16px;
    background: #F8F5F0;
    border-radius: 6px;
    border-left: 3px solid #6B7280;
}

/* Submit Button */
.ac-bs-submit-wrap {
    text-align: center;
    margin-top: 36px;
}

.ac-bs-btn {
    display: inline-block;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.ac-bs-btn-primary {
    background: #D44E5C;
    color: #fff;
}

.ac-bs-btn-primary:hover {
    background: #c43e4c;
}

.ac-bs-btn-primary:active {
    transform: scale(0.98);
}

.ac-bs-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.ac-bs-success {
    text-align: center;
    padding: 40px 20px;
    background: #F8F5F0;
    border-radius: 10px;
    border: 1px solid #E8E0D0;
}

.ac-bs-success-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: #D44E5C;
    color: #fff;
    font-size: 32px;
    margin: 0 auto 20px;
}

.ac-bs-success-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 24px;
    color: #1B2A4A;
    margin: 0 0 12px;
}

.ac-bs-success-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 10px;
}

/* Error Message */
.ac-bs-error {
    margin-top: 20px;
    padding: 16px 20px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    color: #B91C1C;
    font-size: 14px;
    text-align: center;
}

/* Notice (already logged in) */
.ac-bs-notice {
    text-align: center;
    padding: 40px 20px;
}

.ac-bs-notice p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 640px) {
    .ac-bs-grid {
        grid-template-columns: 1fr;
    }

    .ac-bs-title {
        font-size: 22px;
    }

    .ac-bs-info-row {
        flex-direction: column;
        gap: 2px;
    }

    .ac-bs-btn {
        width: 100%;
    }
}
