/* Auth & Installer Layout Stylesheet */
.auth-body {
    background-color: var(--light-bg, #f3f4f6);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.auth-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.auth-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.auth-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main, #111827);
    margin: 0;
}

.auth-brand p {
    color: var(--text-muted, #6b7280);
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
}

.auth-card {
    background: #ffffff;
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid var(--border-color, #e5e7eb);
}

.auth-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-main, #111827);
}

.auth-subtitle {
    color: var(--text-muted, #6b7280);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted, #6b7280);
    font-size: 0.8rem;
}

/* Install verification checklist */
.install-checks {
    background: var(--light-bg, #f9fafb);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 6px;
    padding: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
}

.check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
}

.check-item.pass .check-badge {
    background-color: #def7ec;
    color: #03543f;
}

.check-item.fail .check-badge {
    background-color: #fde8e8;
    color: #9b1c1c;
}

.check-name {
    font-weight: 500;
    color: var(--text-main, #111827);
}

.check-info {
    color: var(--text-muted, #6b7280);
    font-size: 0.8rem;
    margin-left: auto;
}
