/* Login — spécifique, complète app.css */

body.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.login-box {
    max-width: 400px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}
.brand-lockup h1 {
    color: var(--primary);
    margin: 0;
    font-size: 22px;
}
.login-logo {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.login-box .subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin: 0 0 24px;
}

.type-toggle {
    display: flex;
    gap: 6px;
    background: #f0f4f6;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}
.type-toggle button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 9px 6px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    font-family: var(--font);
    line-height: 1.3;
}
.type-toggle button.active {
    background: var(--primary);
    color: #fff;
}

.login-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}
