/* School status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
}

.status-badge.pending  { background: #fff3cd; color: #856404; }
.status-badge.approved { background: #d4edda; color: #155724; }
.status-badge.rejected { background: #f8d7da; color: #721c24; }

/* Pending screen */
.pending-screen {
    text-align: center;
    padding: 3rem 2rem;
}

.pending-screen .pending-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pending-screen h2 {
    color: var(--color-primary);
    margin-bottom: .5rem;
}

.pending-screen p {
    color: var(--color-text-muted);
    font-size: .9rem;
}

/* Forgot password */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1rem;
}

.back-link::before { content: '←'; }
[dir="rtl"] .back-link::before { content: '→'; }

/* Password strength indicator */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: .4rem;
    background: var(--color-border);
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width .3s ease, background .3s ease;
    width: 0;
}
