/* Logo et section logo de la page de connexion */

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    background: var(--sabi-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(212, 145, 84, 0.3);
}

.logo i {
    font-size: 36px;
    color: var(--sabi-text);
}

.logo-section h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sabi-text);
    margin-bottom: 8px;
}

.logo-section p {
    color: var(--sabi-text-secondary);
    font-size: 16px;
    font-weight: 300;
}

@media (max-width: 480px) {
    .logo-section h1 {
        font-size: 24px;
    }
}
