/**
 * Bay Area Service Hub — Recommend a Business form
 * Generic form classes for reuse across BASH forms.
 */

.bash-form-field {
    margin-bottom: 24px;
}

.bash-form-label {
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--bash-text-primary);
    margin-bottom: 8px;
}

input.bash-form-input,
.bash-form-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bash-border);
    border-radius: var(--bash-radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--bash-text-primary);
    background: var(--bash-bg-primary);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.bash-form-input:focus {
    outline: none;
    border-color: var(--bash-primary);
    background: var(--bash-primary-ultra-light);
}

select.bash-form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

textarea.bash-form-input {
    min-height: 100px;
    resize: vertical;
}

.bash-form-honeypot {
    position: absolute;
    left: -9999px;
}

.bash-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bash-success);
    color: #FFFFFF;
    border: none;
    border-radius: var(--bash-radius-full);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.bash-btn-primary:hover {
    background: var(--bash-success-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: #FFFFFF;
}

.bash-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bash-form-description {
    font-family: inherit;
    font-size: 13px;
    color: var(--bash-text-muted);
    margin-top: 6px;
}

.bash-form-actions {
    text-align: center;
    margin-top: 32px;
}

.bash-content-narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.bash-text-center {
    text-align: center;
}

.bash-section-text {
    font-family: inherit;
    font-size: 17px;
    color: var(--bash-text-secondary);
    line-height: 1.8;
    margin: 0 0 20px;
}
