/* ============================================
   Terms Page Styles
   ============================================ */

.terms-card {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: var(--fc-radius-lg);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--fc-shadow-md);
}

.terms-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.terms-lead {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    color: var(--fc-text-muted);
    text-align: center;
}

.terms-box {
    padding: 1.25rem;
    border-radius: var(--fc-radius-md);
    border: 1px solid var(--border);
    background: var(--fc-bg-panel-soft);
    color: var(--fc-text-main);
    max-height: 300px;
    overflow-y: auto;
}

.terms-box p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.terms-check {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--primary-bg);
    border-radius: var(--fc-radius-md);
    cursor: pointer;
}

.terms-check input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.terms-check span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fc-text-main);
}

.terms-actions {
    margin-top: 1rem;
}

.terms-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--fc-radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
}

.terms-primary:hover:not(:disabled) {
    background: var(--primary-dark);
}

.terms-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.terms-error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--danger);
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--fc-radius-md);
    text-align: center;
}
